Skip to content
This repository was archived by the owner on Aug 29, 2019. It is now read-only.

Commit c3e5b5d

Browse files
committed
Merge pull request #11 from aweber/update-metadata
Update metadata
2 parents 4e52916 + 0ccdb0d commit c3e5b5d

File tree

2 files changed

+35
-8
lines changed

2 files changed

+35
-8
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22
*.svn
33
*.egg-info
44
*.swp
5+
*.egg
6+
*.coverage
57
build/
8+
coverage/
9+
nosetests.xml

setup.py

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,44 @@
11
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
28

39
setup(
410
name='aweber_api',
511
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',
716
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=[
933
'httplib2>=0.7.0',
1034
'oauth2>=1.2',
11-
],
12-
tests_require = [
35+
],
36+
tests_require=[
1337
'dingus',
1438
'coverage',
15-
],
16-
setup_requires = [
39+
],
40+
setup_requires=[
1741
'nose',
18-
],
42+
],
1943
include_package_data=True
2044
)
21-

0 commit comments

Comments
 (0)