-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.5 KB
/
setup.py
File metadata and controls
42 lines (41 loc) · 1.5 KB
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
39
40
41
42
from setuptools import setup
setup(
name='allthingstalk',
version='0.3.0',
description='AllThingsTalk Python SDK',
url='https://github.com/allthingstalk/python-sdk',
download_url='https://github.com/allthingstalk/python-sdk/archive/0.3.0.tar.gz',
author='AllThingsTalk',
author_email='support@allthingstalk.com',
license='Apache 2.0',
packages=['allthingstalk'],
keywords=['allthingstalk', 'iot', 'sdk'],
install_requires=[
'paho-mqtt>=1.6.0',
'requests>=2.25.0',
'python-dateutil>=2.8.0',
'six>=1.15.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only'
],
python_requires='>=3.6'
)