hoymiles-wifi/setup.py
2024-09-16 09:39:05 +02:00

19 lines
565 B
Python

"""Setup for the hoymiles-wifi package."""
from setuptools import setup
setup(
name="hoymiles-wifi",
packages=["hoymiles_wifi", "hoymiles_wifi.protobuf"],
install_requires=["protobuf", "crcmod"],
version="0.2.6",
description="A python library for interfacing with the Hoymiles DTUs and the HMS-XXXXW-2T series of micro-inverters using protobuf messages.",
author="suaveolent",
include_package_data=True,
entry_points={
"console_scripts": [
"hoymiles-wifi = hoymiles_wifi.__main__:run_main",
],
},
)