pyh0n/setup.py

23 lines
562 B
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(
name="pyhon",
2023-02-13 08:06:09 +05:30
version="0.0.5",
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',
url="https://github.com/Andre0512/pyhon",
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",
install_requires=["aiohttp"]
)