Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KaSroka committed Aug 26, 2021
1 parent 3b0b6ca commit 7ce6838
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[metadata]
description-file = README.md
license_files = LICENSE.txt
29 changes: 21 additions & 8 deletions setup.py
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',
],
)

0 comments on commit 7ce6838

Please sign in to comment.