-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.59 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
38
39
40
41
42
43
44
45
46
47
from setuptools import find_packages, setup
from tuya_iot import __version__
def requirements():
with open("requirements.txt") as fileobj:
return [line.strip() for line in fileobj]
with open("README.md", encoding="utf-8") as fh:
doc_long_description = fh.read()
setup(
name="tuya-iot-py-sdk",
url="https://github.com/tuya/tuya-iot-app-sdk-python",
author="Tuya Inc.",
author_email="[email protected]",
keywords="tuya iot app sdk python",
long_description=doc_long_description,
long_description_content_type="text/markdown",
description="A Python sdk for Tuya Open API, which provides IoT capabilities, maintained by Tuya official",
license="MIT",
project_urls={
"Bug Tracker": "https://github.com/tuya/tuya-iot-app-sdk-python/issues",
"Changes": "https://github.com/tuya/tuya-iot-python-sdk/wiki/Tuya-IoT-Python-SDK-Release-Notes",
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
],
version=__version__,
install_requires=requirements(),
test_suite="runtests.runtests",
entry_points={"nose.plugins": []},
packages=find_packages(),
python_requires=">=3.7",
)