pyhOn/setup.py

47 lines
1.3 KiB
Python
Raw Permalink Normal View History

2023-02-12 17:41:38 -07:00
#!/usr/bin/env python3
2023-02-12 19:36:09 -07:00
from setuptools import setup, find_packages
2023-02-12 17:41:38 -07:00
2023-07-12 11:36:32 -06:00
with open("README.md", "r", encoding="utf-8") as f:
2023-02-12 17:41:38 -07:00
long_description = f.read()
setup(
2023-02-18 14:25:51 -07:00
name="pyhOn",
2024-04-09 14:46:47 -06:00
version="0.17.4",
2023-02-12 17:41:38 -07:00
author="Andre Basche",
2023-02-12 19:36:09 -07:00
description="Control hOn devices with python",
2023-02-12 17:41:38 -07:00
long_description=long_description,
2023-04-09 12:55:36 -06:00
long_description_content_type="text/markdown",
2023-03-04 14:38:43 -07:00
project_urls={
"GitHub": "https://github.com/Andre0512/pyhOn",
"PyPI": "https://pypi.org/project/pyhOn",
},
2023-02-12 17:41:38 -07:00
license="MIT",
platforms="any",
2023-02-12 19:36:09 -07:00
packages=find_packages(),
2023-02-12 17:41:38 -07:00
include_package_data=True,
python_requires=">=3.10",
2024-02-16 20:07:28 -07:00
install_requires=[
"aiohttp>=3.8.6",
"typing-extensions>=4.8",
"yarl>=1.8",
"awsiotsdk>=1.21.0",
],
2023-03-04 14:38:43 -07:00
classifiers=[
2023-03-06 11:45:46 -07:00
"Development Status :: 4 - Beta",
2023-03-04 14:38:43 -07: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 15:50:03 -07:00
"Programming Language :: Python :: 3.12",
2023-03-04 14:38:43 -07:00
"Topic :: Software Development :: Libraries :: Python Modules",
],
2023-02-19 11:43:41 -07:00
entry_points={
2023-04-09 12:55:36 -06:00
"console_scripts": [
"pyhOn = pyhon.__main__:start",
2023-02-19 11:43:41 -07:00
]
2023-04-09 12:55:36 -06:00
},
2023-02-12 17:41:38 -07:00
)