├── .gitignore ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── code_of_conduct.md ├── pyproject.toml ├── setup.py └── src └── pipfromrepl └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pipfromrepl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pipfromrepl/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pipfromrepl/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pipfromrepl/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pipfromrepl/HEAD/README.md -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pipfromrepl/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pipfromrepl/HEAD/setup.py -------------------------------------------------------------------------------- /src/pipfromrepl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asweigart/pipfromrepl/HEAD/src/pipfromrepl/__init__.py --------------------------------------------------------------------------------