-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
33 lines (30 loc) · 933 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
from setuptools import setup
import wepay
import os.path
long_description = open('README.rst').read() if os.path.isfile('README.rst') else 'A Python SDK for our WePay API'
version_str = '%s.%s.%s' % (
wepay.VERSION[0],
wepay.VERSION[1],
wepay.VERSION[2]
)
setup(
name='wepay',
version=version_str,
packages=['wepay'],
description='A Python SDK for our WePay API.',
long_description=long_description,
author='WePay API Team',
author_email='[email protected]',
license='MIT License',
url='https://github.com/wepay/Python-SDK',
platforms=["any"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=['requests>=2.22.0,<3.0.0']
)