forked from abondoe/pytouchline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (20 loc) · 707 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (20 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name = 'pytouchlineplus',
packages = ['pytouchlineplus'],
version = '0.8',
description = 'A Roth Touchline interface library',
author = 'Mikkel Pilehave Jensen',
author_email = 'pilehave@gmail.com',
license='MIT',
url = 'https://github.com/pilehave/pytouchlineplus',
download_url = 'https://github.com/pilehave/pytouchlineplus/archive/0.8.tar.gz',
keywords = ['Roth', 'Touchline', 'Home Assistant', 'hassio', "Heat pump"],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
install_requires=['httplib2', 'cchardet']
)