2016-07-09 11:32:16 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
2019-12-18 08:11:18 +00:00
|
|
|
with open("kasa/version.py") as f:
|
2019-11-11 21:14:34 +00:00
|
|
|
exec(f.read())
|
|
|
|
|
|
|
|
setup(
|
2019-12-18 08:11:18 +00:00
|
|
|
name="python-kasa",
|
2019-11-11 21:14:34 +00:00
|
|
|
version=__version__, # type: ignore # noqa: F821
|
2019-12-18 08:11:18 +00:00
|
|
|
description="Python API for TP-Link Kasa Smarthome products",
|
|
|
|
url="https://github.com/python-kasa/python-kasa",
|
|
|
|
author="",
|
|
|
|
author_email="",
|
2019-11-11 21:14:34 +00:00
|
|
|
license="GPLv3",
|
2019-12-18 08:11:18 +00:00
|
|
|
packages=["kasa"],
|
|
|
|
install_requires=["click"],
|
2019-11-11 21:14:34 +00:00
|
|
|
python_requires=">=3.6",
|
2019-12-18 08:11:18 +00:00
|
|
|
entry_points={"console_scripts": ["kasa=kasa.cli:cli"]},
|
2019-11-11 21:14:34 +00:00
|
|
|
zip_safe=False,
|
|
|
|
)
|