diegotoral / generator-django

A Yeoman generator for Django.
MIT License
78 stars 16 forks source link

How to pip freeze into each requirements file? #49

Closed matiboy closed 9 years ago

matiboy commented 9 years ago

More a question than an issue. I really like the separation between dev/prod requirements, but how do you easily add requirements to those files specifically, is there something like --save-dev in node?

diegotoral commented 9 years ago

pip doesn't provide such option. You need to do all manually. :cry:

pip freeze is not an option here, since it lists all installed packages, including packages dependencies.

matiboy commented 9 years ago

That what I thought ;) Thanks!