forked from lostfields/python-panasonic-comfort-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 959 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
""" Setup for python-panasonic-comfort-cloud """
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pcomfortcloud',
version='0.0.13',
description='Read and change status of Panasonic Comfort Cloud devices',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/lostfields/python-panasonic-comfort-cloud',
author='Lostfields',
license='MIT',
classifiers=[
'Topic :: Home Automation',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='home automation panasonic climate',
install_requires=['requests>=2.20.0'],
packages=['pcomfortcloud'],
zip_safe=True,
entry_points={
'console_scripts': [
'pcomfortcloud=pcomfortcloud.__main__:main',
]
})