-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
59 lines (47 loc) · 1.7 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import re
import sys
from setuptools import setup
from io import open
VERSION = '1.6.4'
long_description = open('README.rst', 'rt', encoding='utf8').read()
# PyPI can't process links with anchors
long_description = re.sub(r'<(.*)#.*>`_', '<\g<1>>`_', long_description)
setup(
name = 'cloudpayments',
packages = ['cloudpayments'],
description = 'CloudPayments Python Client Library',
long_description = long_description,
version = VERSION,
author = 'Antida software',
author_email = 'info@antidasoftware.com',
license = 'MIT license',
url = 'https://github.com/antidasoftware/cloudpayments-python-client',
download_url = 'https://github.com/antidasoftware/cloudpayments-python-client/tarball/%s' % VERSION,
requires = [
'requests (>=2.9.1)',
'pytz (>=2015.7)'
],
install_requires = [
'requests >=2.9.1',
'pytz >=2015.7'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Office/Business',
'Topic :: Office/Business :: Financial',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False
)