-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
27 lines (24 loc) · 855 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
from setuptools import setup
long_description = None
with open("README.md", 'r') as fp:
long_description = fp.read()
setup(
name = 'pyEcoventV2',
packages = ['ecovent','ecoventv2'],
version='0.9.10',
description='Python3 library for single-room energy recovery ventilators from Vents / Blauberg / Flexit',
long_description=long_description,
python_requires='>=3.6.7',
author='Aleksander Lehmann',
author_email='[email protected]',
url='https://github.com/gody0/pyEcoventV2',
license="MIT",
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)