Removing PIL from the setup.py develop process.

People should use package managers to install PIL.  It's too much of a
mess to install via python packaging.
This commit is contained in:
Christopher Allan Webber 2012-07-26 10:46:10 -05:00
parent c7fd56c9e0
commit 33e902e3b3

View File

@ -53,7 +53,6 @@ setup(
'celery', 'celery',
'jinja2', 'jinja2',
'sphinx', 'sphinx',
'PIL',
'Babel', 'Babel',
'translitcodec', 'translitcodec',
'argparse', 'argparse',
@ -65,6 +64,7 @@ setup(
## For now we're expecting that users will install this from ## For now we're expecting that users will install this from
## their package managers. ## their package managers.
# 'lxml', # 'lxml',
# 'PIL',
], ],
# requires=['gst'], # requires=['gst'],
test_suite='nose.collector', test_suite='nose.collector',