You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pyhOn/setup.py

41 lines
1.2 KiB
Python

1 year ago
#!/usr/bin/env python3
1 year ago
from setuptools import setup, find_packages
1 year ago
11 months ago
with open("README.md", "r", encoding="utf-8") as f:
1 year ago
long_description = f.read()
setup(
name="pyhOn",
version="0.15.5",
1 year ago
author="Andre Basche",
1 year ago
description="Control hOn devices with python",
1 year ago
long_description=long_description,
long_description_content_type="text/markdown",
1 year ago
project_urls={
"GitHub": "https://github.com/Andre0512/pyhOn",
"PyPI": "https://pypi.org/project/pyhOn",
},
1 year ago
license="MIT",
platforms="any",
1 year ago
packages=find_packages(),
1 year ago
include_package_data=True,
python_requires=">=3.10",
11 months ago
install_requires=["aiohttp==3.8.5", "typing-extensions==4.7.1"],
1 year ago
classifiers=[
"Development Status :: 4 - Beta",
1 year ago
"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",
],
entry_points={
"console_scripts": [
"pyhOn = pyhon.__main__:start",
]
},
1 year ago
)