-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
30 lines (27 loc) · 1.02 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
29
30
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("LICENSE", "r", encoding="utf-8") as fh:
license = fh.read()
setuptools.setup(
name="python-glinet",
version="0.7.0",
author="Tomtana",
description="Python3 client for Gl.Inet LUCI API firmware 4.0 onwards.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tomtana/python-glinet",
project_urls={
"Bug Tracker": "https://github.com/tomtana/python-glinet/issues",
"Documentation": "https://tomtana.github.io/python-glinet"
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
],
python_requires=">=3.6",
install_requires=["ipython", "tabulate", "requests", "passlib"],
packages=setuptools.find_packages()
)