vaab / colour

Python color representations manipulation library (RGB, HSL, web, ...)
BSD 2-Clause "Simplified" License
322 stars 41 forks source link

Remove setuptools from the requirements list. #7

Closed mehcode closed 11 years ago

mehcode commented 11 years ago

The requirement is a bit pointless as the setup.py file cannot even be executed and be parsed to find out setuptools is required if setuptools isn't found. This also is seeming to cause this package to break when installing from PyPi.

vaab commented 11 years ago

Although I'll probably accepted it because I can't remember I put this in the first place, and that obviously it doesn't break anything on my side, and that imports as from setuptools import setup, find_packages that are in the setup.py before the call to setup()... it seems that it doesn't make sense to have this dependency.

Thanks!