-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 687 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='cometblue_lite',
version='0.7.0',
packages=['cometblue_lite'],
python_requires='>=3.4',
install_requires=['bleak_retry_connector>=1.8.0', 'bleak>=0.15.1'],
description='Module for Eurotronic Comet Blue thermostats',
author='David Kreitschmann',
maintainer='David Kreitschmann',
url='https://github.com/neffs/python-cometblue-lite',
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha",
],
)