diff options
| author | Dirk Makowski <dmakowski@gmx.net> | 2012-08-25 23:14:28 +0200 |
|---|---|---|
| committer | Dirk Makowski <dmakowski@gmx.net> | 2012-08-25 23:14:28 +0200 |
| commit | 81c2749d1e42463c5fd7b987f570fab71d1cce38 (patch) | |
| tree | 5057de5fcc32e57818a95f9b549624379295ee42 /setup.py | |
| parent | 77dcfa6b2c0b8df13c34d0f2b76556b4c0569c8e (diff) | |
| download | feedgenerator-81c2749d1e42463c5fd7b987f570fab71d1cce38.tar.gz | |
Initial commit
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 31 |
1 files changed, 22 insertions, 9 deletions
@@ -1,19 +1,24 @@ #! /usr/bin/python + +# Using setuptools rather than distutils to get the `develop` command from setuptools import setup -NAME = 'feedgenerator' -MODULES = ['feedgenerator'] -DESCRIPTION = 'Standalone version of django.utils.feedgenerator' +NAME = 'feedgenerator-py3k' +PACKAGES = ['feedgenerator'] +DESCRIPTION = 'Standalone version of django.utils.feedgenerator, compatible with Py3k' +LONG_DESCRIPTION = open('README.rst').read(), -URL = "http://hg.lolnet.org/feedgenerator/" +URL = "https://github.com/dmdm/feedgenerator-py3k.git" -CLASSIFIERS = ['Development Status :: 5 - Production/Stable', +CLASSIFIERS = ['Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.2', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules', @@ -21,15 +26,19 @@ CLASSIFIERS = ['Development Status :: 5 - Production/Stable', AUTHOR = 'Django Software Foundation' AUTHOR_EMAIL = 'foundation@djangoproject.com' -MAINTAINER = 'Alexis Metaireau' -MAINTAINER_EMAIL= 'alexis@notmyidea.org' +MAINTAINER = 'Dirk Makowski' +MAINTAINER_EMAIL= 'dm@parenchym.com' KEYWORDS = "feed atom rss".split(' ') -VERSION = '1.2.1' +VERSION = '1.5.dev' + +TEST_SUITE = 'tests' + +REQUIRES = ['pytz', 'six'] setup( name=NAME, version=VERSION, - py_modules=MODULES, + packages=PACKAGES, # metadata for upload to PyPI author=AUTHOR, @@ -37,7 +46,11 @@ setup( maintainer=MAINTAINER, maintainer_email=MAINTAINER_EMAIL, description=DESCRIPTION, + long_description=LONG_DESCRIPTION, keywords=KEYWORDS, url=URL, classifiers=CLASSIFIERS, + test_suite=TEST_SUITE, + install_requires=REQUIRES, + ) |
