1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="envoy_utils",
version="0.0.1",
description="Python utilities for the Enphase Envoy",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
install_requires=["zeroconf"],
python_requires=">=3.8",
)
|