Skip to content

Commit

Permalink
Fixed a few minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaun Tarves committed Apr 22, 2021
1 parent c322798 commit c1877d8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

validate_dependencies = [
"pytest>=5.4,<6",
"flake8>=3,<4",
]

needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion wyze_sdk/api/devices/locks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from abc import ABCMeta
from datetime import date, datetime, timedelta
from datetime import datetime
from typing import Optional, Sequence

from wyze_sdk.models.devices import DeviceModels, Lock, LockGateway
Expand Down

0 comments on commit c1877d8

Please sign in to comment.