-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (34 loc) · 1.14 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
from setuptools import find_packages, setup
from cloudipsp.configuration import __version__
desc = """
Cloudipsp python sdk.
Docs - https://docs.fondy.eu/
README - https://github.com/cloudipsp/python-sdk/blob/master/README.md
"""
requires_list = [
'requests',
'six'
]
setup(
name='cloudipsp',
version=__version__,
url='https://github.com/cloudipsp/python-sdk/',
license='MIT',
description='Python SDK for cloudipsp clients.',
long_description=desc,
author='Dmitriy Miroshnikov',
packages=find_packages(where='.', exclude=('tests*',)),
install_requires=requires_list,
classifiers=[
'Environment :: Web Environment',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
])