-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (33 loc) · 977 Bytes
/
pyproject.toml
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
33
34
35
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "mistapi"
version = "0.53.0"
authors = [{name="Thomas Munzer", email="tmunzer@juniper.net"}]
description = "Python package to simplify the Mist System APIs usage"
keywords = ["Mist", "Juniper", "API"]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: System :: Networking",
"Development Status :: 4 - Beta"
]
dependencies = [
'requests > 2.24',
'tabulate > 0.8.5',
'python-dotenv < 0.17',
'deprecation > 2.0.0'
]
[project.urls]
"Source" = "https://github.com/tmunzer/mistapi_python"
"Bug Tracker" = "https://github.com/tmunzer/mistapi_python/issues"