-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
32 lines (28 loc) · 991 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
32
"""setup.py: setuptools control."""
from setuptools import setup, find_packages
__version__ = '4.2.0'
with open('README.md', 'r', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='tplink-cloud-api',
author='Dev Piekstra',
author_email='[email protected]',
packages=find_packages(exclude=("tests",)),
version=__version__,
description='Python library for communicating with the TP-Link Cloud API to manage TP-Link Kasa Smart Home devices',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'requests>=2,<3',
'aiohttp>=3,<4'
],
url='https://github.com/piekstra/tplink-cloud-api',
python_requires='>=3.7',
zip_safe=False,
license='GPL-3',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
)