dejw / vip

vip is a simple library that makes your Python aware of existing virtualenv underneath.
3 stars 1 forks source link

Smart install command #10

Open dejw opened 11 years ago

dejw commented 11 years ago

Install (now --ini) can be smart enough to install only those requirement files that matches interpreter version, eg:

for Python 2.6 install can install *requirements.txt, *requirements.2.txt and *requirements.26.txt.

In that case one can create a set of requirement files, each for certain interpreter version.

Also install could update environment to reflect changes in those files, e.g uninstall removed dependencies.