1
0
Fork 0
mirror of https://github.com/Andre0512/pyhOn.git synced 2025-05-22 10:55:17 -04:00

Create cmd tool, full parameter name

This commit is contained in:
Andre Basche 2023-02-19 19:43:41 +01:00
parent ba054237f1
commit 83bb99a34e
6 changed files with 82 additions and 8 deletions

View file

@ -7,7 +7,7 @@ with open("README.md", "r") as f:
setup(
name="pyhOn",
version="0.0.12",
version="0.0.13",
author="Andre Basche",
description="Control hOn devices with python",
long_description=long_description,
@ -18,5 +18,10 @@ setup(
packages=find_packages(),
include_package_data=True,
python_requires=">=3.10",
install_requires=["aiohttp"]
install_requires=["aiohttp"],
entry_points={
'console_scripts': [
'pyhOn = pyhon.__main__:start',
]
}
)