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(
|
|
|
|
name="pyhon",
|
2023-02-13 03:36:09 +01:00
|
|
|
version="0.0.5",
|
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,
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
url="https://github.com/Andre0512/pyhon",
|
|
|
|
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",
|
|
|
|
install_requires=["aiohttp"]
|
|
|
|
)
|