-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (32 loc) · 1.08 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
from setuptools import find_packages, setup
setup(
name='komtet_kassa_sdk',
version='7.2.0',
license='MIT',
description='Python SDK for KOMTET Kassa',
author='Motmom',
author_email='motmom.dev@gmail.com',
url='/~https://github.com/Komtet/komtet-kassa-python-sdk',
download_url='https://pypi.python.org/pypi/komtet_kassa_sdk',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: Russian',
'Operating System :: OS Independent',
'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',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
test_suite='tests',
install_requires=[
'requests'
]
)