-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
44 lines (40 loc) · 1.41 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
#!/usr/bin/env python3
"""Setup file for Compal CH7465LG Python client."""
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst"), encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="connect_box",
version="0.4.0",
description="Python client for interacting with Compal CH7465LG devices.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/home-assistant-ecosystem/python-connect-box",
download_url="https://github.com/home-assistant-ecosystem/python-connect-box/releases",
author="Fabian Affolter",
author_email="[email protected]",
license="MIT",
install_requires=[
"aiohttp<4",
"attrs",
"defusedxml",
],
packages=["connect_box"],
zip_safe=True,
python_requires=">=3.10",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
],
)