-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 723 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""Setup script for pyCheckwatt module."""
from setuptools import find_packages, setup
MIN_PY_VERSION = "3.10"
PACKAGES = find_packages()
VERSION = "0.2.9"
setup(
name="pycheckwatt",
packages=PACKAGES,
version=VERSION,
description="A python library for communicating with CheckWatt EnergyInBalance",
author="Marcus Karlsson",
author_email="macke.karlsson@gmail.com",
license="MIT",
url="https://github.com/faanskit/pycheckwatt",
download_url=f"https://github.com/faanskit/pycheckwatt/archive/v{VERSION}.tar.gz",
install_requires=["aiohttp", "pydantic", "relativedelta"],
keywords=["checkwatt", "energyinbalance", "homeassistant"],
python_requires=f">={MIN_PY_VERSION}",
)