pyh0n/setup.py

41 lines
1.1 KiB
Python
Raw Normal View History

2023-02-13 06:11:38 +05:30
#!/usr/bin/env python3
2023-02-13 08:06:09 +05:30
from setuptools import setup, find_packages
2023-02-13 06:11:38 +05:30
with open("README.md", "r") as f:
long_description = f.read()
setup(
2023-02-19 02:55:51 +05:30
name="pyhOn",
2023-03-08 05:28:25 +05:30
version="0.3.0",
2023-02-13 06:11:38 +05:30
author="Andre Basche",
2023-02-13 08:06:09 +05:30
description="Control hOn devices with python",
2023-02-13 06:11:38 +05:30
long_description=long_description,
long_description_content_type='text/markdown',
2023-03-05 03:08:43 +05:30
project_urls={
"GitHub": "https://github.com/Andre0512/pyhOn",
"PyPI": "https://pypi.org/project/pyhOn",
},
2023-02-13 06:11:38 +05:30
license="MIT",
platforms="any",
2023-02-13 08:06:09 +05:30
packages=find_packages(),
2023-02-13 06:11:38 +05:30
include_package_data=True,
python_requires=">=3.10",
2023-02-20 00:13:41 +05:30
install_requires=["aiohttp"],
2023-03-05 03:08:43 +05:30
classifiers=[
2023-03-07 00:15:46 +05:30
"Development Status :: 4 - Beta",
2023-03-05 03:08:43 +05:30
"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-20 00:13:41 +05:30
entry_points={
'console_scripts': [
'pyhOn = pyhon.__main__:start',
]
}
2023-02-13 06:11:38 +05:30
)