Issue 64: setup.py doesn't work with setuptools
http://code.google.com/p/html5lib/issues/detail?id=64
Comment #2 by dirk.holtwick:
You should also change the package_dir setting from:
package_dir = {'html5lib': 'src/html5lib'}
to
package_dir = {'': 'src'}
Otherwise this very handy command doesn't work
python setup.py develop
And maybe the import could also include ez_setup.py to ensure the setup
always works
fine:
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"html5lib-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/html5lib-discuss?hl=en-GB
-~----------~----~----~----~------~----~------~--~---