Skip to content
This repository was archived by the owner on Aug 29, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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='api@aweber.com',
maintainer='AWeber API Team',
maintainer_email='api@aweber.com',
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
)