diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..abe02e7 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +from distutils.core import setup + +setup( + name='ThermiaOnlineAPI', + packages=['ThermiaOnlineAPI'], + version='1.0.0', + license='GPL-3.0', + description='A Python API for Thermia heat pumps using https://online.thermia.se', + author='Krisjanis Lejejs', + author_email='krisjanis.lejejs@gmail.com', + url='https://github.com/klejejs/python-thermia-online-api', + download_url='https://github.com/klejejs/python-thermia-online-api/archive/refs/tags/1.0.0.zip', + keywords=['Thermia', 'Online'], + install_requires=[], + classifiers=[], +) \ No newline at end of file