forked from beveradb/pysonofflan
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minor changes to optimise different zeroconf versions * Update HISTORY.rst * Update setup.py * Update client.py * flake8 updates * Update .travis.yml * Update tox.ini * Update tox.ini * Update tox.ini * Update tox.ini * Revert "Update tox.ini" This reverts commit 31070f6. * Update tox.ini * Update tox.ini * Update tox.ini * Update tox.ini * Update tox.ini * flake * Update .travis.yml * verison update * A couple of code tidies * Update setup.py * Update mock_listener.py * Minor changes * Fix error handling. And bump zeroconf version * flake 8 * Update HISTORY.rst
- Loading branch information
Showing
15 changed files
with
141 additions
and
84 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
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
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 |
---|---|---|
|
@@ -50,7 +50,7 @@ async def state_callback(device): | |
|
||
__author__ = "Matt Saxon" | ||
__email__ = "[email protected]" | ||
__version__ = "1.1.0" | ||
__version__ = '1.1.1' | ||
__url__ = "https://github.com/mattsaxon/pysonofflan" | ||
|
||
# flake8: noqa | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,17 @@ | |
with open('HISTORY.rst') as history_file: | ||
history = history_file.read() | ||
|
||
requirements = ['Click>=7.0', 'click_log', 'pycryptodome', 'requests', 'zeroconf>=0.23.0'] | ||
requirements = ['Click>=7.0', 'click_log', 'pycryptodome', 'requests', 'zeroconf>=0.24.4'] | ||
setup_requirements = [] | ||
test_requirements = ['pytest', 'tox', 'python-coveralls', 'flask', 'flake8'] | ||
|
||
PROJECT_URLS = { | ||
"Home Assistant component": "https://github.com/mattsaxon/sonoff-lan-mode-homeassistant/", | ||
"Bug Reports": "https://github.com/mattsaxon/pysonofflan/issues/", | ||
"Component Docs": "https://pysonofflanr3.readthedocs.io/", | ||
"Itead Dev Docs": "https://github.com/itead/Sonoff_Devices_DIY_Tools/tree/master/other/" | ||
} | ||
|
||
setup( | ||
author="Matt Saxon", | ||
author_email='[email protected]', | ||
|
@@ -40,13 +47,14 @@ | |
license="MIT license", | ||
long_description=readme + '\n\n' + history, | ||
include_package_data=True, | ||
keywords='pysonofflanr3', | ||
keywords='pysonofflanr3, homeassistant', | ||
name='pysonofflanr3', | ||
packages=find_packages(include=['pysonofflanr3']), | ||
setup_requires=setup_requirements, | ||
test_suite='tests', | ||
tests_require=test_requirements, | ||
url='https://github.com/mattsaxon/pysonofflan', | ||
version='1.1.0', | ||
url='https://github.com/mattsaxon/pysonofflanr3', | ||
project_urls=PROJECT_URLS, | ||
version='1.1.1', | ||
zip_safe=False, | ||
) |
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.