hoymiles-wifi/setup.py

16 lines
418 B
Python
Raw Normal View History

2024-01-30 10:55:48 +00:00
from setuptools import setup
2023-11-17 11:10:33 +00:00
setup(
name='hoymiles-wifi',
2024-01-29 10:46:27 +00:00
packages=['hoymiles_wifi', 'hoymiles_wifi.protobuf'],
2024-02-12 09:11:37 +00:00
version='0.1.2',
2023-11-17 11:10:33 +00:00
description='A python library for interfacing with Hoymiles HMS-XXXXW-T2 series of micro-inverters.',
author='suaveolent',
2023-11-17 11:45:17 +00:00
include_package_data=True,
entry_points={
'console_scripts': [
'hoymiles-wifi = hoymiles_wifi.__main__:run_main',
2023-11-17 11:45:17 +00:00
],
}
2023-11-17 11:10:33 +00:00
)