pyh0n/setup.py

28 lines
671 B
Python
Raw Normal View History

2023-02-13 06:11:38 +05:30
#!/usr/bin/env python3
2023-02-13 08:06:09 +05:30
from setuptools import setup, find_packages
2023-02-13 06:11:38 +05:30
with open("README.md", "r") as f:
long_description = f.read()
setup(
2023-02-19 02:55:51 +05:30
name="pyhOn",
2023-03-05 01:57:10 +05:30
version="0.2.0",
2023-02-13 06:11:38 +05:30
author="Andre Basche",
2023-02-13 08:06:09 +05:30
description="Control hOn devices with python",
2023-02-13 06:11:38 +05:30
long_description=long_description,
long_description_content_type='text/markdown',
2023-03-05 01:57:10 +05:30
url="https://github.com/Andre0512/pyh0n",
2023-02-13 06:11:38 +05:30
license="MIT",
platforms="any",
2023-02-13 08:06:09 +05:30
packages=find_packages(),
2023-02-13 06:11:38 +05:30
include_package_data=True,
python_requires=">=3.10",
2023-02-20 00:13:41 +05:30
install_requires=["aiohttp"],
entry_points={
'console_scripts': [
'pyhOn = pyhon.__main__:start',
]
}
2023-02-13 06:11:38 +05:30
)