mirror of
https://github.com/Andre0512/pyhOn.git
synced 2025-05-14 15:14:28 -04:00
Improve
This commit is contained in:
parent
cf481e5f13
commit
984d1b91b7
5 changed files with 23 additions and 14 deletions
9
setup.py
9
setup.py
|
@ -1,22 +1,21 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open("README.md", "r") as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name="pyhon",
|
||||
version="0.0.1",
|
||||
version="0.0.5",
|
||||
author="Andre Basche",
|
||||
description="Control Haier devices with pyhon",
|
||||
description="Control hOn devices with python",
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
url="https://github.com/Andre0512/pyhon",
|
||||
license="MIT",
|
||||
platforms="any",
|
||||
package_dir={"": "pyhon"},
|
||||
packages=[""],
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
python_requires=">=3.10",
|
||||
install_requires=["aiohttp"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue