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