forked from danielperna84/hahomematic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (44 loc) · 1.45 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
from __future__ import annotations
import os
from setuptools import find_packages, setup
def readme():
with open("README.md") as fptr:
return fptr.read()
package_data = {
'foopkg': ['py.typed'],
},
PACKAGE_NAME = "hahomematic"
HERE = os.path.abspath(os.path.dirname(__file__))
VERSION = "0.37.5"
PACKAGES = find_packages(exclude=["tests", "tests.*", "dist", "build"])
REQUIRES = ["aiohttp>=3.8.1", "voluptuous>=0.12.2", "python-slugify>=4.0.1"]
setup(
name=PACKAGE_NAME,
version=VERSION,
license="MIT License",
url="https://github.com/danielperna84/hahomematic",
download_url="https://github.com/danielperna84/hahomematic/tarball/" + VERSION,
author="Daniel Perna",
author_email="[email protected]",
description="Homematic interface for Home Assistant",
packages=PACKAGES,
package_data={'hahomematic': ['py.typed', 'rega_scripts/*.fn']},
zip_safe=False,
platforms="any",
python_requires=">=3.9",
install_requires=REQUIRES,
keywords=["home", "assistant", "homematic"],
entry_points={
'console_scripts': [
'hahomematic = hahomematic.hmcli:main'
]
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Home Automation",
],
)