pyhOn/setup.py

41 lines
1.2 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
with open("README.md", "r") as f:
long_description = f.read()
setup(
2023-02-18 22:25:51 +01:00
name="pyhOn",
2023-07-11 00:00:25 +02:00
version="0.14.9",
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-07-11 00:00:25 +02:00
install_requires=["aiohttp==3.8.4", "typing-extensions==4.7.1"],
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={
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
)