forked from lostfields/python-panasonic-comfort-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.02 KB
/
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
32
33
""" Setup for python-panasonic-comfort-cloud """
from setuptools import setup
import os
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pcomfortcloud',
version=os.getenv('VERSION', default='0.0.1'),
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'],
package_data={'': ['certificatechain.pem']},
zip_safe=False,
entry_points={
'console_scripts': [
'pcomfortcloud=pcomfortcloud.__main__:main',
]
})