This repository has been archived by the owner on Aug 29, 2019. It is now read-only.
forked from RamosAlvarez/AWeber-API-Python-Library
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from aweber/update-metadata
Update metadata
- Loading branch information
Showing
2 changed files
with
35 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,8 @@ | |
*.svn | ||
*.egg-info | ||
*.swp | ||
*.egg | ||
*.coverage | ||
build/ | ||
coverage/ | ||
nosetests.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,44 @@ | ||
from setuptools import setup, find_packages | ||
from sys import version | ||
|
||
if version < '2.2.3': | ||
from distutils.dist import DistributionMetadata | ||
DistributionMetadata.classifiers = None | ||
DistributionMetadata.download_url = None | ||
|
||
setup( | ||
name='aweber_api', | ||
version='1.1.3', | ||
packages=find_packages(exclude=['tests']), | ||
author='AWeber Dev Team', | ||
author_email='[email protected]', | ||
maintainer='AWeber API Team', | ||
maintainer_email='[email protected]', | ||
url='https://github.com/aweber/AWeber-API-Python-Library', | ||
install_requires = [ | ||
download_url='http://pypi.python.org/pypi/aweber_api', | ||
description='The AWeber API Python Library allows you to quickly get up ' | ||
'and running with integrating access to the AWeber API into your ' | ||
'Python applications.', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Environment :: Web Environment', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Topic :: Internet :: WWW/HTTP', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'License :: OSI Approved :: BSD License', | ||
], | ||
packages=find_packages(exclude=['tests']), | ||
install_requires=[ | ||
'httplib2>=0.7.0', | ||
'oauth2>=1.2', | ||
], | ||
tests_require = [ | ||
], | ||
tests_require=[ | ||
'dingus', | ||
'coverage', | ||
], | ||
setup_requires = [ | ||
], | ||
setup_requires=[ | ||
'nose', | ||
], | ||
], | ||
include_package_data=True | ||
) | ||
|