forked from AASHE/python-membersuite-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 965 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
#!/usr/bin/env python
from setuptools import setup
import os
# Utility function to read README.md file
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='membersuite_api_client',
version="1.1.5",
description='MemberSuite API Client',
author='AASHE',
author_email='[email protected]',
url='https://github.com/AASHE/python-membersuite-api-client',
long_description=read("README.md"),
packages=[
'membersuite_api_client',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
],
include_package_data=True,
install_requires=["future==0.16.0",
"retrying>=1.3.3",
"zeep>=0.26"]
)