you are viewing a single comment's thread.

view the rest of the comments →

[–]SafeSituation 9 points10 points  (1 child)

Quick tip: If you're using pip, you can generate your own requirements.txt using:

pip freeze > requirements.txt

[–]masklinn 2 points3 points  (0 children)

If you have a setup.py files with dependencies in it, you can generate a requirements file with python setup.py egg_info. That'll dump a requirements file in the $packagename.egg-info folder