|
|
|
|
|
by yeukhon
3206 days ago
|
|
I do this: requirements/ /base.txt
/test.txt
/docs.txt
Then in setup.py just read these requirements.txt. I just find this easier to manage all the dependencies from a single point. During development and testing code, you'd assume base.txt is what is going to production. It takes some care to commit this file, nonetheless.I could keep a freeze version if I really want to have a full view (for debugging purpose). |
|