Sure,
Simply comment out thebteisted dependencies from the setup.pay before running easy install. It should be notes that you can only use the synchronous version as twisted is the driver for the asynchronous version.
As for python3, the mainline branch has a few areas that are not py3 compatible, however the 2to3 tool should easily convert them (there is a second branch but it hasn't been updated recently).
Galen,Were you able to install the package from your sources? I made the following mods to your python3 branch:setup.py
- Commented out 'twisted >= 12.2.0' under install_requires
ez_setup.py
- modified line 98 to read: except pkg_resources.VersionConflict as e:
- modified line 124 & 150: renamed urllib2 -> urllib
- modified line 233 & 234: print(...)
The installation still fails (understandably) after attempting to download, import and install setuptools, which only supports up to v2.7.I have done a little reading and wonder whether the distribute package may be of help? (http://pypi.python.org/pypi/distribute/0.6.30)