-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
53 lines (48 loc) · 1.8 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding:utf-8 -*-
from setuptools import setup
with open("bosch_thermostat_http/version.py") as f:
exec(f.read())
REQUIRES = [
'pyaes>=1.6.1',
'aiohttp',
"click>=7"
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='bosch-thermostat-http-client',
version=__version__, # type: ignore # noqa: F821,
description='Python API for talking to Bosch™ Heating gateway using HTTP ',
long_description=long_description,
long_description_content_type="text/markdown",
author='Ludovic Laurent',
author_email='[email protected]',
maintainer='Ludovic Laurent',
maintainer_email='[email protected]',
url='https://github.com/moustic999/bosch-thermostat-http-client-python.git',
download_url='https://github.com/moustic999/bosch-thermostat-http-client-python/archive/{}.zip'.format(__version__),
packages=["bosch_thermostat_http"],
install_requires=REQUIRES,
include_package_data=True,
license='Apache License 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Environment :: Console',
'Topic :: Other/Nonlisted Topic',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
entry_points={
"console_scripts": [
"bosch_scan=bosch_thermostat_http.bosch_rawscan_cli:cli",
"bosch_examples=bosch_thermostat_http.bosch_examples:cli"
]
}
)