Mercurial > p > roundup > code
diff setup.py @ 4516:85dfe17c182e
Installation:
Fixed an issue that prevented to use EasyInstall and a Python
egg. Thanks to Satchidanand Haridas for the patch and John Kristensen
for testing it.
| author | Bernhard Reiter <Bernhard.Reiter@intevation.de> |
|---|---|
| date | Fri, 08 Jul 2011 15:28:00 +0000 |
| parents | 53e438d1ca19 |
| children | 9ead86b4fe71 |
line wrap: on
line diff
--- a/setup.py Fri Jul 01 15:17:32 2011 +0000 +++ b/setup.py Fri Jul 08 15:28:00 2011 +0000 @@ -23,6 +23,7 @@ from roundup.dist.command.build_py import build_py from roundup.dist.command.build import build, list_message_files from roundup.dist.command.bdist_rpm import bdist_rpm +from roundup.dist.command.install_lib import install_lib from distutils.core import setup import sys, os @@ -140,6 +141,7 @@ 'build_py': build_py, 'build': build, 'bdist_rpm': bdist_rpm, + 'install_lib': install_lib, }, packages=packages, py_modules=py_modules,
