-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shaun Tarves
committed
Apr 22, 2021
1 parent
c322798
commit c1877d8
Showing
2 changed files
with
9 additions
and
5 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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
|
||
validate_dependencies = [ | ||
"pytest>=5.4,<6", | ||
"flake8>=3,<4", | ||
] | ||
|
||
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv) | ||
|
@@ -30,25 +31,28 @@ | |
author='Shaun Tarves', | ||
author_email='[email protected]', | ||
python_requires=">=3.9.0", | ||
include_package_data=True, | ||
license="The Unlicense", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
"Development Status :: 5 - Production/Stable", | ||
"Topic :: Communications :: Chat", | ||
"License :: Public Domain", | ||
"License :: Free for non-commercial use", | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
"Topic :: Home Automation", | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.9' | ||
], | ||
keywords="", | ||
keywords=["wyze", "wyze-labs", "wyze-sdk", "wyze-api", "wyzeapy", "wyze-apy", "smart home", "home automation"], | ||
packages=find_packages( | ||
exclude=[ | ||
"tests", | ||
"tests.*", | ||
] | ||
), | ||
install_requires=[], | ||
install_requires=["requests", "blackboxprotobuf"], | ||
setup_requires=pytest_runner, | ||
test_suite="tests", | ||
tests_require=validate_dependencies, | ||
|
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