forked from dmdm/feedgenerator-py3k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (47 loc) · 1.7 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#! /usr/bin/python
# Using setuptools rather than distutils to get the `develop` command
from setuptools import setup
NAME = 'feedgenerator'
PACKAGES = ['feedgenerator', 'feedgenerator.django',
'feedgenerator.django.utils']
DESCRIPTION = 'Standalone version of django.utils.feedgenerator, compatible with Py3k'
LONG_DESCRIPTION = open('README.rst').read()
URL = "https://github.com/dmdm/feedgenerator-py3k.git"
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',
]
AUTHOR = 'Django Software Foundation'
AUTHOR_EMAIL = '[email protected]'
MAINTAINER = 'Dirk Makowski'
MAINTAINER_EMAIL = '[email protected]'
KEYWORDS = "feed atom rss".split(' ')
VERSION = '1.5.dev'
TEST_SUITE = 'tests_feedgenerator'
REQUIRES = ['pytz', 'six']
setup(
name=NAME,
version=VERSION,
packages=PACKAGES,
test_suite=TEST_SUITE,
install_requires=REQUIRES,
# metadata for upload to PyPI
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
keywords=KEYWORDS,
url=URL,
classifiers=CLASSIFIERS,
zip_safe=False,
)