pyhOn/setup.py

28 lines
671 B
Python
Raw Normal View History

2023-02-12 17:41:38 -07:00
#!/usr/bin/env python3
2023-02-12 19:36:09 -07:00
from setuptools import setup, find_packages
2023-02-12 17:41:38 -07:00
with open("README.md", "r") as f:
long_description = f.read()
setup(
2023-02-18 14:25:51 -07:00
name="pyhOn",
2023-03-04 14:19:48 -07:00
version="0.2.1",
2023-02-12 17:41:38 -07:00
author="Andre Basche",
2023-02-12 19:36:09 -07:00
description="Control hOn devices with python",
2023-02-12 17:41:38 -07:00
long_description=long_description,
long_description_content_type='text/markdown',
2023-03-04 13:27:10 -07:00
url="https://github.com/Andre0512/pyh0n",
2023-02-12 17:41:38 -07:00
license="MIT",
platforms="any",
2023-02-12 19:36:09 -07:00
packages=find_packages(),
2023-02-12 17:41:38 -07:00
include_package_data=True,
python_requires=">=3.10",
2023-02-19 11:43:41 -07:00
install_requires=["aiohttp"],
entry_points={
'console_scripts': [
'pyhOn = pyhon.__main__:start',
]
}
2023-02-12 17:41:38 -07:00
)