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:
parent
ba054237f1
commit
83bb99a34e
6 changed files with 82 additions and 8 deletions
9
setup.py
9
setup.py
|
@ -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',
|
||||
]
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue