forked from michaelarnauts/comfoconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 930 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_description = open('README.rst').read()
setup(
name='pycomfoconnect',
version='0.5.1',
license='MIT',
url='https://github.com/michaelarnauts/comfoconnect',
author='Michaël Arnauts',
author_email='michael.arnauts@gmail.com',
description='Python interface for the Zehnder ComfoConnect LAN C bridge.',
long_description=long_description,
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=list(val.strip() for val in open('requirements.txt')),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
]
)