python-kasa/setup.py

20 lines
514 B
Python
Raw Normal View History

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:
exec(f.read())
setup(
2019-12-18 08:11:18 +00:00
name="python-kasa",
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="",
license="GPLv3",
2019-12-18 08:11:18 +00:00
packages=["kasa"],
install_requires=["click"],
python_requires=">=3.6",
2019-12-18 08:11:18 +00:00
entry_points={"console_scripts": ["kasa=kasa.cli:cli"]},
zip_safe=False,
)