-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (28 loc) · 931 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
31
32
# *-* coding:utf-8 *-*
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
required = f.read().splitlines()
setuptools.setup(
name='tago',
version='3.1.1',
python_requires='>=3.6',
description='Official Python lib for TagoIO',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='tago tagoio develop iot sdk analysis device',
url='https://github.com/tago-io/tago-sdk-python',
author='Tago LLC',
author_email='[email protected]',
license='Apache License',
packages=setuptools.find_packages(),
install_requires=required,
zip_safe=False
)