This repository was 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 7
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.27 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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.4.0',
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',
download_url='http://pypi.python.org/pypi/aweber_api',
description='A python client library for the AWeber API.',
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.9.0,<=0.10.0',
'oauth2>=1.2',
],
tests_require=[
'mock',
'coverage',
],
setup_requires=[
'nose',
],
include_package_data=True
)