Is there a way to list pip dependencies/requirements?

Check out my project johnnydep! Installation: pip install johnnydep Usage example: $ johnnydep requests name summary ————————- ———————————————————————- requests Python HTTP for Humans. ├── certifi>=2017.4.17 Python package for providing Mozilla’s CA Bundle. ├── chardet<3.1.0,>=3.0.2 Universal encoding detector for Python 2 and 3 ├── idna<2.7,>=2.5 Internationalized Domain Names in Applications (IDNA) └── urllib3<1.23,>=1.21.1 HTTP library with … Read more

How to state in requirements.txt a direct github source

Normally your requirements.txt file would look something like this: package-one==1.9.4 package-two==3.7.1 package-three==1.0.1 … To specify a Github repo, you do not need the package-name== convention. The examples below update package-two using a GitHub repo. The text between @ and # denotes the specifics of the package. Specify commit hash (41b95ec in the context of updated … Read more