Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 24, 2018 09:57
Show Gist options
  • Save ryantm/c13b22b586b9fe8018097d05cb4d9e09 to your computer and use it in GitHub Desktop.
Save ryantm/c13b22b586b9fe8018097d05cb4d9e09 to your computer and use it in GitHub Desktop.
/nix/store/lw00k94rx08fawrvg8pdr5yf34w1bazj-python3.6-pip-tools-3.1.0
├── bin
│   ├── pip-compile
│   └── pip-sync
├── lib
│   └── python3.6
│   └── site-packages
│   ├── piptools
│   │   ├── cache.py
│   │   ├── click.py
│   │   ├── _compat
│   │   │   ├── contextlib.py
│   │   │   ├── __init__.py
│   │   │   ├── pip_compat.py
│   │   │   ├── __pycache__
│   │   │   │   ├── contextlib.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── pip_compat.cpython-36.pyc
│   │   │   │   └── tempfile.cpython-36.pyc
│   │   │   └── tempfile.py
│   │   ├── exceptions.py
│   │   ├── __init__.py
│   │   ├── io.py
│   │   ├── locations.py
│   │   ├── logging.py
│   │   ├── __main__.py
│   │   ├── __pycache__
│   │   │   ├── cache.cpython-36.pyc
│   │   │   ├── click.cpython-36.pyc
│   │   │   ├── exceptions.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── io.cpython-36.pyc
│   │   │   ├── locations.cpython-36.pyc
│   │   │   ├── logging.cpython-36.pyc
│   │   │   ├── __main__.cpython-36.pyc
│   │   │   ├── resolver.cpython-36.pyc
│   │   │   ├── sync.cpython-36.pyc
│   │   │   ├── utils.cpython-36.pyc
│   │   │   └── writer.cpython-36.pyc
│   │   ├── repositories
│   │   │   ├── base.py
│   │   │   ├── __init__.py
│   │   │   ├── local.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── local.cpython-36.pyc
│   │   │   │   └── pypi.cpython-36.pyc
│   │   │   └── pypi.py
│   │   ├── resolver.py
│   │   ├── scripts
│   │   │   ├── compile.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── compile.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   └── sync.cpython-36.pyc
│   │   │   └── sync.py
│   │   ├── sync.py
│   │   ├── utils.py
│   │   └── writer.py
│   └── pip_tools-3.1.0.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
14 directories, 56 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment