forked from fishbigger/TapoP100
-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
31 lines (26 loc) · 888 Bytes
/
setup.py
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
30
31
from setuptools import setup, find_packages
with open("README.md") as readme_file:
README = readme_file.read()
with open("HISTORY.md") as history_file:
HISTORY = history_file.read()
setup_args = dict(
name="PyP100",
version="0.1.4",
description="A module for controlling the Tp-link Tapo P100/P105/P110 plugs and L530/L510E bulbs.",
long_description_content_type="text/markdown",
long_description=README,
license="MIT",
packages=find_packages(),
author="Toby Johnson",
author_email="[email protected]",
keywords=["Tapo", "Tp-Link", "P100"],
url="https://github.com/fishbigger/TapoP100",
download_url="https://pypi.org/project/PyP100/",
)
install_requires = [
"pycryptodome>=3.9.8",
"pkcs7>=0.1.2",
"requests>=2.24.0",
]
if __name__ == "__main__":
setup(**setup_args, install_requires=install_requires)