From 7ce683860fb400fc30919aab979056f73ae09572 Mon Sep 17 00:00:00 2001 From: "Sroka, Kamil" Date: Thu, 26 Aug 2021 09:51:19 +0200 Subject: [PATCH] Release 0.1.0 --- setup.cfg | 3 +++ setup.py | 29 +++++++++++++++++++++-------- 2 files changed, 24 insertions(+), 8 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..7a87698 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[metadata] +description-file = README.md +license_files = LICENSE.txt diff --git a/setup.py b/setup.py index 6d09bd8..7621170 100755 --- a/setup.py +++ b/setup.py @@ -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='kamilsroka92@gmail.com', - 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', + ], +)