pyhOn/setup.py

42 lines
1.3 KiB
Python
Raw Normal View History

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
2023-07-12 19:36:32 +02:00
with open("README.md", "r", encoding="utf-8") as f:
2023-02-13 01:41:38 +01:00
long_description = f.read()
setup(
2023-02-18 22:25:51 +01:00
name="pyhOn",
version="0.15.15",
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,
2023-04-09 20:55:36 +02:00
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-11-20 15:24:34 +01:00
install_requires=["aiohttp>=3.8", "typing-extensions>=4.8", "yarl>=1.8"],
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",
2023-11-19 23:50:03 +01:00
"Programming Language :: Python :: 3.12",
2023-03-04 22:38:43 +01:00
"Topic :: Software Development :: Libraries :: Python Modules",
],
2023-02-19 19:43:41 +01:00
entry_points={
2023-04-09 20:55:36 +02:00
"console_scripts": [
"pyhOn = pyhon.__main__:start",
2023-02-19 19:43:41 +01:00
]
2023-04-09 20:55:36 +02:00
},
2023-02-13 01:41:38 +01:00
)