-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
32 lines (29 loc) · 1013 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
32
"""Setup script for TheengsGateway package."""
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name="theengsgateway",
long_description=long_description,
long_description_content_type="text/markdown",
author="Theengs",
url="https://github.com/theengs/gateway",
license="GPL-3.0 License",
package_dir={"TheengsGateway": "TheengsGateway"},
packages=["TheengsGateway"],
scripts=["bin/TheengsGateway"],
include_package_data=True,
install_requires=[
"bleak>=0.19.0",
'bluetooth-adapters>=0.15.3; python_version>="3.9"',
"bluetooth-clocks<1.0",
"bluetooth-numbers>=1.0,<2.0",
"importlib-metadata",
"paho-mqtt>=2.0.0,<3.0.0",
"pycryptodomex>=3.18.0",
"TheengsDecoder>=1.8.2",
],
use_scm_version={"version_scheme": "no-guess-dev"},
setup_requires=["setuptools_scm"],
)