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

Commit

Permalink
Merge pull request #11 from aweber/update-metadata
Browse files Browse the repository at this point in the history
Update metadata
  • Loading branch information
chrismcguire committed Dec 20, 2012
2 parents 4e52916 + 0ccdb0d commit c3e5b5d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@
*.svn
*.egg-info
*.swp
*.egg
*.coverage
build/
coverage/
nosetests.xml
39 changes: 31 additions & 8 deletions setup.py
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
)

0 comments on commit c3e5b5d

Please sign in to comment.