pyhOn/setup.py

23 lines
563 B
Python
Raw 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
with open("README.md", "r") as f:
long_description = f.read()
setup(
2023-02-18 14:25:51 -07:00
name="pyhOn",
2023-02-18 19:30:48 -07:00
version="0.0.12",
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,
long_description_content_type='text/markdown',
url="https://github.com/Andre0512/pyhon",
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",
install_requires=["aiohttp"]
)