27 lines
672 B
Python
27 lines
672 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r") as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="pyhOn",
|
|
version="0.0.13",
|
|
author="Andre Basche",
|
|
description="Control hOn devices with python",
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url="https://github.com/Andre0512/pyhon",
|
|
license="MIT",
|
|
platforms="any",
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
python_requires=">=3.10",
|
|
install_requires=["aiohttp"],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'pyhOn = pyhon.__main__:start',
|
|
]
|
|
}
|
|
)
|