bionitio-team / bionitio-python

Demonstrating best practices for bioinformatics command line tools
MIT License
25 stars 12 forks source link

Add and use dev requirements file #1

Closed claresloggett closed 5 years ago

claresloggett commented 5 years ago

setup.py now only requires biopython, with no version requirement. This might need changing: do we need biopython greater than some version number for any functionality used? If so we can specify biopython > X.X in setup.py instead.

Using an absolute pinned version like ==1.66 is a bad idea in setup.py as it means the user can't install this package at the same time as any other package that follows similar practices.