-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (24 loc) · 867 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
from setuptools import setup
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='CybertonicaAPI',
version='0.1',
description='Python client for the Cybertonica Open API',
url='https://gitlab.cybertonica.com/ochaplashkin/openapi_python_client.git',
author='Cybertonica Ltd.',
author_email='[email protected]',
license='unlicense',
packages=['CybertonicaAPI'],
install_requires=['requests'],
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6'
]
)