Question about PyPI and 'easy_install'

Vsevolod Balashov vsevolod.balashov at gmail.com
Tue Feb 26 06:03:03 EST 2008


On Feb 24, 10:38 pm, makoto kuwata <k... at kuwata-lab.com> wrote:
> Hi,
>
> I have a trouble around PyPI and easy_install.
>
> I have developed OSS (Tenjin) and registered it to PyPI.http://pypi.python.org/pypi/Tenjin/0.6.1
>
> But I can't install it by 'easy_install' command.
>

Hi!

I`m think this patch is helpful for you

---BEGIN PATCH---

--- setup.py.orig       2007-10-23 03:54:18.000000000 +0400
+++ setup.py    2008-02-26 14:08:44.660000000 +0300
@@ -6,12 +6,10 @@


 import sys, re
-if len(sys.argv) > 1 and sys.argv[1] == 'egg_info':
-    from ez_setup import use_setuptools
-    use_setuptools()
-from distutils.core import setup
+from ez_setup import use_setuptools
+from setuptools import setup

-name     = 'pyTenjin'
+name     = 'Tenjin'
 version  = '0.6.1'
 author   = 'makoto kuwata'
 email    = 'kwa at kuwata-lab.com'

---END PATCH---
PS Thank you for excellent job.

--
Vsevolod Balashov
http://vsevolod.balashov.name



More information about the Python-list mailing list