-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
28 lines (26 loc) · 1 KB
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="tplinkrouterc6u",
version="5.4.0",
author="Alex Erohin",
author_email="[email protected]",
description="TP-Link Router API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AlexandrErohin/TP-Link-Archer-C6U",
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
],
install_requires=['requests', 'pycryptodome', 'macaddress'],
python_requires='>=3.10',
)