-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
34 lines (28 loc) · 873 Bytes
/
setup.py
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
"""
Setup script for Zuora-client
"""
from setuptools import setup
from setuptools import find_packages
import zuora
setup(
name='zuora-client',
version=zuora.__version__,
description='Zuora client SOAP API',
long_description=open('README.rst').read(),
keywords='zuora, client, soap, api',
author=zuora.__author__,
author_email=zuora.__email__,
url=zuora.__url__,
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules'],
license=zuora.__license__,
zip_safe=False,
install_requires=['suds>=0.4',
'httplib2>=0.8']
)