larsmans / seqlearn

Sequence learning toolkit for Python
http://larsmans.github.io/seqlearn/
MIT License
688 stars 102 forks source link

Using a `requirements.txt` file #27

Closed jonathf closed 8 years ago

jonathf commented 8 years ago

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.

Awesome project you guys have got going here BTW.

jonathf commented 8 years ago

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.