1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
"""Setup metadata for the growattServer package."""
from pathlib import Path
import setuptools
long_description = Path("README.md").read_text(encoding="utf8")
setuptools.setup(
name="growattServer",
version="2.0.0",
author="IndyKoning",
author_email="indykoningnl@gmail.com",
description="A package to talk to growatt server",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/indykoning/PyPi_GrowattServer",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"requests",
],
)
|