forked from kongo09/aioairctrl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 788 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 788 Bytes
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="aioairctrl",
version="0.2.6",
description="Library for controlling Philips air purifiers (using encrypted CoAP)",
long_description=long_description,
author="betaboon",
url="https://github.com/kongo09/aioairctrl",
project_urls={
"Bug Tracker": "https://github.com/kongo09/aioairctrl/issues",
},
license="MIT",
package_dir={"": "."},
packages=setuptools.find_packages(),
install_requires=[
"pycryptodomex",
"aiocoap>=0.4.17, <0.5",
],
python_requires=">=3.12",
entry_points={
"console_scripts": [
"aioairctrl=aioairctrl.__main__:main",
],
},
)