-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from frenck/frenck-2021-2618
Styling, formatting & bug fixes
- Loading branch information
Showing
7 changed files
with
102 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import find_packages, setup | ||
|
||
from tuya_iot import __version__ | ||
|
||
|
||
def requirements(): | ||
with open('requirements.txt') as fileobj: | ||
with open("requirements.txt") as fileobj: | ||
return [line.strip() for line in fileobj] | ||
|
||
|
||
|
@@ -12,37 +13,36 @@ def requirements(): | |
|
||
|
||
setup( | ||
name='tuya-iot-py-sdk', | ||
url='https://github.com/tuya/tuya-iot-app-sdk-python', | ||
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', | ||
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', | ||
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" | ||
"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.6', | ||
'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' | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development", | ||
"Programming Language :: Python :: 3", | ||
"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 :: Implementation :: PyPy", | ||
], | ||
|
||
version=__version__, | ||
install_requires=requirements(), | ||
test_suite='runtests.runtests', | ||
entry_points={'nose.plugins': []}, | ||
test_suite="runtests.runtests", | ||
entry_points={"nose.plugins": []}, | ||
packages=find_packages(), | ||
python_requires='>=3.6', | ||
python_requires=">=3.6", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.