Mercurial > p > roundup > code
comparison setup.py @ 1320:3758a5af985f
Lots of little fixes in this update:
- fixed Date.local()
- email quoted text stripping is controllable again [SF#650742]
- extract attachment name from content-disposition if name missing [SF#637278]
- removed FILTER_POSITION from bundled configs
- reverse message listing in issue display (reversion of recent change)
- bad entries for multilink editing in cgi don't traceback now [SF#640310]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Dec 2002 00:11:16 +0000 |
| parents | 5402a6f2a754 |
| children | c717b8d63a7e |
comparison
equal
deleted
inserted
replaced
| 1319:f8cc0b724b28 | 1320:3758a5af985f |
|---|---|
| 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 14 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" | 15 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" |
| 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, | 16 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 17 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 18 # | 18 # |
| 19 # $Id: setup.py,v 1.40 2002-10-17 00:22:16 richard Exp $ | 19 # $Id: setup.py,v 1.41 2002-12-10 00:11:13 richard Exp $ |
| 20 | 20 |
| 21 from distutils.core import setup, Extension | 21 from distutils.core import setup, Extension |
| 22 from distutils.util import get_platform | 22 from distutils.util import get_platform |
| 23 from distutils.command.build_scripts import build_scripts | 23 from distutils.command.build_scripts import build_scripts |
| 24 | 24 |
| 25 import sys, os, string | 25 import sys, os, string |
| 26 from glob import glob | 26 from glob import glob |
| 27 | |
| 28 # patch distutils if it can't cope with the "classifiers" keyword | |
| 29 if sys.version < '2.2.3': | |
| 30 from distutils.dist import DistributionMetadata | |
| 31 DistributionMetadata.classifiers = None | |
| 27 | 32 |
| 28 from roundup.templates.builder import makeHtmlBase | 33 from roundup.templates.builder import makeHtmlBase |
| 29 | 34 |
| 30 | 35 |
| 31 ############################################################################# | 36 ############################################################################# |
| 178 description = "Roundup issue tracking system.", | 183 description = "Roundup issue tracking system.", |
| 179 author = "Richard Jones", | 184 author = "Richard Jones", |
| 180 author_email = "richard@users.sourceforge.net", | 185 author_email = "richard@users.sourceforge.net", |
| 181 url = 'http://sourceforge.net/projects/roundup/', | 186 url = 'http://sourceforge.net/projects/roundup/', |
| 182 packages = packagelist, | 187 packages = packagelist, |
| 188 classifiers = [ | |
| 189 'Development Status :: 4 - Beta', | |
| 190 'Environment :: Console', | |
| 191 'Environment :: Web Environment', | |
| 192 'Intended Audience :: End Users/Desktop', | |
| 193 'Intended Audience :: Developers', | |
| 194 'Intended Audience :: System Administrators', | |
| 195 'License :: OSI Approved :: Python Software Foundation License', | |
| 196 'Operating System :: MacOS :: MacOS X', | |
| 197 'Operating System :: Microsoft :: Windows', | |
| 198 'Operating System :: POSIX', | |
| 199 'Programming Language :: Python', | |
| 200 'Topic :: Communications :: Email', | |
| 201 'Topic :: Office/Business', | |
| 202 'Topic :: Software Development :: Bug Tracking', | |
| 203 ], | |
| 183 | 204 |
| 184 # Override certain command classes with our own ones | 205 # Override certain command classes with our own ones |
| 185 cmdclass = { | 206 cmdclass = { |
| 186 'build_scripts': build_scripts_roundup, | 207 'build_scripts': build_scripts_roundup, |
| 187 }, | 208 }, |
