-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
29 lines (25 loc) · 1016 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
from setuptools import setup
setup(name='pyvcontrol',
version='1.4.5',
description='Communication with Viessmann heating via Optolink interface.',
url='http://github.com/',
author='Jochen Schmaehling',
author_email='[email protected]',
packages=['pyvcontrol'],
zip_safe=False,
install_requires=['pyserial', 'pyyaml', 'deprecated'],
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GPL-3',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)