rasbt / pyprind

PyPrind - Python Progress Indicator Utility
BSD 3-Clause "New" or "Revised" License
547 stars 65 forks source link

Fix #15: Don't install requirements.txt #16

Closed victorandree closed 8 years ago

victorandree commented 8 years ago

No reason to install a requirements.txt file through setup.py – especially if it doesn't exist. Also, setuptools is so much better than distutils so use that instead. Fixes #15.

rasbt commented 8 years ago

Thanks, the requirements.txt file really shouldn't be there. For such simple case as this module, how would setuptools be better/different? I preferred distutils here because it's in the Stdlib

victorandree commented 8 years ago

@rasbt The point about setuptools is probably fair. I mostly prefer it because of python setup.py develop which I happened to run here. Might not have been necessary.

Thanks for merging!