|
1 | 1 | from setuptools import setup, find_packages |
| 2 | +from sys import version |
| 3 | + |
| 4 | +if version < '2.2.3': |
| 5 | + from distutils.dist import DistributionMetadata |
| 6 | + DistributionMetadata.classifiers = None |
| 7 | + DistributionMetadata.download_url = None |
2 | 8 |
|
3 | 9 | setup( |
4 | 10 | name='aweber_api', |
5 | 11 | version='1.1.3', |
6 | | - packages=find_packages(exclude=['tests']), |
| 12 | + author='AWeber Dev Team', |
| 13 | + author_email='api@aweber.com', |
| 14 | + maintainer='AWeber API Team', |
| 15 | + maintainer_email='api@aweber.com', |
7 | 16 | url='https://github.com/aweber/AWeber-API-Python-Library', |
8 | | - install_requires = [ |
| 17 | + download_url='http://pypi.python.org/pypi/aweber_api', |
| 18 | + description='The AWeber API Python Library allows you to quickly get up ' |
| 19 | + 'and running with integrating access to the AWeber API into your ' |
| 20 | + 'Python applications.', |
| 21 | + classifiers=[ |
| 22 | + 'Development Status :: 5 - Production/Stable', |
| 23 | + 'Intended Audience :: Developers', |
| 24 | + 'Environment :: Web Environment', |
| 25 | + 'Operating System :: OS Independent', |
| 26 | + 'Programming Language :: Python', |
| 27 | + 'Topic :: Internet :: WWW/HTTP', |
| 28 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 29 | + 'License :: OSI Approved :: BSD License', |
| 30 | + ], |
| 31 | + packages=find_packages(exclude=['tests']), |
| 32 | + install_requires=[ |
9 | 33 | 'httplib2>=0.7.0', |
10 | 34 | 'oauth2>=1.2', |
11 | | - ], |
12 | | - tests_require = [ |
| 35 | + ], |
| 36 | + tests_require=[ |
13 | 37 | 'dingus', |
14 | 38 | 'coverage', |
15 | | - ], |
16 | | - setup_requires = [ |
| 39 | + ], |
| 40 | + setup_requires=[ |
17 | 41 | 'nose', |
18 | | - ], |
| 42 | + ], |
19 | 43 | include_package_data=True |
20 | 44 | ) |
21 | | - |
|
0 commit comments