forked from tschamm/boschshcpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 962 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
30
31
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="boschshcpy",
version="0.2.37",
url="https://github.com/tschamm/boschshcpy",
author="Clemens-Alexander Brust, Thomas Schamm",
author_email="[email protected], [email protected]",
description="Bosch Smart Home Controller API Python Library",
license="bsd-3-clause",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
],
python_requires=">=3.7",
install_requires=[
"cryptography>=3.3.2",
"getmac>=0.8.2,<1",
"requests>=2.22",
"zeroconf>=0.28.0",
],
)