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-03-08 00:58:25 +01:00
|
|
|
version="0.3.0",
|
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',
|
2023-03-04 22:38:43 +01:00
|
|
|
project_urls={
|
|
|
|
"GitHub": "https://github.com/Andre0512/pyhOn",
|
|
|
|
"PyPI": "https://pypi.org/project/pyhOn",
|
|
|
|
},
|
2023-02-13 01:41:38 +01:00
|
|
|
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"],
|
2023-03-04 22:38:43 +01:00
|
|
|
classifiers=[
|
2023-03-06 19:45:46 +01:00
|
|
|
"Development Status :: 4 - Beta",
|
2023-03-04 22:38:43 +01:00
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
],
|
2023-02-19 19:43:41 +01:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'pyhOn = pyhon.__main__:start',
|
|
|
|
]
|
|
|
|
}
|
2023-02-13 01:41:38 +01:00
|
|
|
)
|