We're glad to announce the release of fades 2.0.
fades, a FAst DEpendencies for Scripts, is a system that automatically handles the virtualenvs in the simple cases normally found when writing scripts or simple programs.
It will automagically create a new virtualenv (or reuse a previous created one), installing the necessary ependencies, and execute your script inside that virtualenv.
You only need to execute the script with fades (instead of Python) and also mark the required dependencies. More details here:
https://github.com/PyAr/fades/
What's new in this release?
- Have a system-wide cache for created virtualenvs: improves reusing and speed
- As a result of previous feature, don't store metadata per-script (in the script) anymore
- Allow to indicate the project name if the module is different (e.g. "import bs4 # fades.pypi beautifulsoup4 == 3.5")
- Support complex version requirements (e.g. <2.6,>1.3,!=1.9")
- Handle packages that whose names are changed by pip
- Other minor bugfixes and improvements
Help / questions:
- You can ask any question or send any recommendation or request to the mailing list.
http://listas.python.org.ar/mailman/listinfo/fades
- Also, you can open an issue here (please do if you find any problem!).
https://github.com/PyAr/fades/issues/new
Thanks in advance for your time!