I was wondering if it would be possible to include a requirements.txt in the root directory with the prerequisites?
I am currently making a one-line installer for a (private) module that downloads and installs seqlearn directly from github using pip install -e git+https://github.com/larsmans/seqlearn.git#egg=seqlearn. But this won't work on new virtual envirements without first installing Cython manually.
I know this has limited usefulness, but it would simplify things for me a notch.
Seems I was wrong when experimenting with it. It is not requirements.txt file that handles the dependencies in pip, but for registered modules in pypi. Sorry about that.
I was wondering if it would be possible to include a
requirements.txt
in the root directory with the prerequisites?I am currently making a one-line installer for a (private) module that downloads and installs
seqlearn
directly from github usingpip install -e git+https://github.com/larsmans/seqlearn.git#egg=seqlearn
. But this won't work on new virtual envirements without first installing Cython manually.I know this has limited usefulness, but it would simplify things for me a notch.
Awesome project you guys have got going here BTW.