-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·30 lines (26 loc) · 1011 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
"""Setup."""
from setuptools import find_packages, setup
# Get setup packages from requirements.txt
with open("requirements_setup.txt", encoding="utf-8") as f:
requirements_setup = f.read().splitlines()
# Get packages from requirements.txt
with open("requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()
with open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="aiolyric",
author="Aidan Timson (Timmo)",
author_email="aidan@timmo.dev",
description="Python package for the Honeywell Lyric Platform",
keywords="aiolyric,api,async,asyncio,honeywell lyric,honeywell,lyric,integration",
license="Apache-2.0",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/timmo001/aiolyric",
install_requires=requirements,
packages=find_packages(exclude=["tests", "generator"]),
python_requires=">=3.11",
setup_requires=requirements_setup,
use_incremental=True,
)