mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 19:23:34 +00:00
20 lines
514 B
Python
20 lines
514 B
Python
from setuptools import setup
|
|
|
|
with open("kasa/version.py") as f:
|
|
exec(f.read())
|
|
|
|
setup(
|
|
name="python-kasa",
|
|
version=__version__, # type: ignore # noqa: F821
|
|
description="Python API for TP-Link Kasa Smarthome products",
|
|
url="https://github.com/python-kasa/python-kasa",
|
|
author="",
|
|
author_email="",
|
|
license="GPLv3",
|
|
packages=["kasa"],
|
|
install_requires=["click"],
|
|
python_requires=">=3.6",
|
|
entry_points={"console_scripts": ["kasa=kasa.cli:cli"]},
|
|
zip_safe=False,
|
|
)
|