Mercurial > p > roundup > code
comparison setup.py @ 4796:f61bd780892e 1.5.0
Release preparation
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Sat, 06 Jul 2013 12:50:52 +0200 |
| parents | 57b9f2848cf8 |
| children | 6ba2d471d76b |
comparison
equal
deleted
inserted
replaced
| 4795:dad18ee491a9 | 4796:f61bd780892e |
|---|---|
| 23 from roundup.dist.command.build_scripts import build_scripts | 23 from roundup.dist.command.build_scripts import build_scripts |
| 24 from roundup.dist.command.build import build, list_message_files | 24 from roundup.dist.command.build import build, list_message_files |
| 25 from roundup.dist.command.bdist_rpm import bdist_rpm | 25 from roundup.dist.command.bdist_rpm import bdist_rpm |
| 26 from roundup.dist.command.install_lib import install_lib | 26 from roundup.dist.command.install_lib import install_lib |
| 27 | 27 |
| 28 try: | 28 # FIXME: setuptools breaks the --manifest-only option to setup.py and |
| 29 from setuptools import setup | 29 # doesn't seem to generate a MANIFEST file. Since I'm not familiar with |
| 30 except ImportError: | 30 # the way setuptools handles the files to include I'm commenting this |
| 31 from distutils.core import setup | 31 # for now -- Ralf Schlatterbeck |
| 32 #try: | |
| 33 # from setuptools import setup | |
| 34 #except ImportError: | |
| 35 from distutils.core import setup | |
| 32 | 36 |
| 33 import sys, os | 37 import sys, os |
| 34 from glob import glob | 38 from glob import glob |
| 35 | 39 |
| 36 # patch distutils if it can't cope with the "classifiers" keyword | 40 # patch distutils if it can't cope with the "classifiers" keyword |
| 114 | 118 |
| 115 setup(name='roundup', | 119 setup(name='roundup', |
| 116 version=__version__, | 120 version=__version__, |
| 117 author="Richard Jones", | 121 author="Richard Jones", |
| 118 author_email="richard@users.sourceforge.net", | 122 author_email="richard@users.sourceforge.net", |
| 123 maintainer="Ralf Schlatterbeck", | |
| 124 maintainer_email="rsc@runtux.com", | |
| 119 description="A simple-to-use and -install issue-tracking system" | 125 description="A simple-to-use and -install issue-tracking system" |
| 120 " with command-line, web and e-mail interfaces. Highly" | 126 " with command-line, web and e-mail interfaces. Highly" |
| 121 " customisable.", | 127 " customisable.", |
| 122 long_description=long_description, | 128 long_description=long_description, |
| 123 url='http://www.roundup-tracker.org', | 129 url='http://www.roundup-tracker.org', |
