-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
40 lines (35 loc) · 1.39 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
"""Setup module for EcoWitt."""
from pathlib import Path
from setuptools import find_packages, setup
PROJECT_DIR = Path(__file__).parent.resolve()
README_FILE = PROJECT_DIR / "README.md"
VERSION = "2024.2.2"
setup(
name="aioecowitt",
version=VERSION,
url="https://github.com/home-assistant-libs/aioecowitt",
download_url="https://github.com/home-assistant-libs/aioecowitt",
author="Home Assistant Team",
author_email="[email protected]",
description="Python wrapper for EcoWitt Protocol",
long_description=README_FILE.read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests.*", "tests", "misc"]),
package_data={"aioecowitt": ["py.typed"]},
python_requires=">=3.9",
install_requires=["aiohttp>3", "meteocalc>=1.1.0"],
entry_points={"console_scripts": ["ecowitt-testserver = aioecowitt.__main__:main"]},
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Home Automation",
"License :: OSI Approved :: Apache Software License",
],
)