-
Notifications
You must be signed in to change notification settings - Fork 16
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
Showing
2 changed files
with
24 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[metadata] | ||
description-file = README.md | ||
license_files = LICENSE.txt |
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,12 +1,25 @@ | ||
#!/usr/bin/env python | ||
|
||
from distutils.core import setup | ||
|
||
setup(name='toshiba-ac', | ||
version='0.1', | ||
description='Toshiba AC controller', | ||
setup( | ||
name='toshiba-ac', | ||
packages=['toshiba_ac'], | ||
version='0.1.0', | ||
license='Apache License 2.0', | ||
description='Toshiba AC controller - allows to control Toshiba HVAC systems with WiFi', | ||
author='Kamil Sroka', | ||
author_email='[email protected]', | ||
packages=['toshiba_ac'], | ||
install_requires=['azure-iot-device', 'httpx'], | ||
) | ||
url = 'https://github.com/KaSroka/Toshiba-AC-control', | ||
|
||
keywords = ['toshiba', 'ac', 'hvac'], | ||
install_requires = [ | ||
'azure-iot-device', | ||
'httpx' | ||
], | ||
classifiers = [ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
) |