josuebrunel / yahoo-fantasy-sport

Python Yahoo! Fantasy Sports
MIT License
28 stars 9 forks source link

Merging dev_requirements.txt and requirements.txt #47

Open EmilMaric opened 8 years ago

EmilMaric commented 8 years ago

Not sure why there is a dev_requirements.txt and a requirements.txt? Can we not combine the two files into one?

josuebrunel commented 8 years ago

The dev_requirements.txt contain packages required for the development purpose, testing packages included where as the requirements.txt only contains dependances of the library/module ... So dev_requirements.txt = requirements.txt + testing packages + documentation packages + ...

EmilMaric commented 8 years ago

If we use tox for testing, can't we specify the testing packages inside the tox.ini file? That way, we don't need a seperate requirements file just for developing? I haven't looked into how you're doing documentation, although I suppose I could look into that next.

josuebrunel commented 8 years ago

I do use tox too ( on my other project ). It would definitely by great to use tox.