hoymiles-wifi/setup.py

19 lines
565 B
Python
Raw Normal View History

2024-03-14 14:18:11 +00:00
"""Setup for the hoymiles-wifi package."""
2024-01-30 10:55:48 +00:00
from setuptools import setup
2023-11-17 11:10:33 +00:00
setup(
2024-03-14 14:18:11 +00:00
name="hoymiles-wifi",
packages=["hoymiles_wifi", "hoymiles_wifi.protobuf"],
install_requires=["protobuf", "crcmod"],
version="0.1.8",
description="A python library for interfacing with the Hoymiles DTUs and the HMS-XXXXW-2T series of micro-inverters using protobuf messages.",
author="suaveolent",
2023-11-17 11:45:17 +00:00
include_package_data=True,
entry_points={
2024-03-14 14:18:11 +00:00
"console_scripts": [
"hoymiles-wifi = hoymiles_wifi.__main__:run_main",
],
},
2023-11-17 11:10:33 +00:00
)