forked from spacetab-io/onelya-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (23 loc) · 800 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
from setuptools import setup, find_packages
__version__ = '1.5.1'
setup(
version=__version__,
name='onelya_sdk',
packages=find_packages(),
install_requires=[
'requests'
],
description='Onelya Python SDK',
author='Travel Managment Consulting',
author_email='otd@tm-consulting.ru',
url='https://github.com/tmconsulting/onelya-python-sdk',
download_url='https://github.com/tmconsulting/onelya-python-sdk/archive/%s.tar.gz' % __version__,
license='MIT License',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)