forked from vladimirs-git/fortigate-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (49 loc) · 1.68 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "fortigate_api"
version = "1.3.1"
description = "Python package to configure Fortigate (Fortios) devices using REST API and SSH"
authors = ["Vladimir Prusakov <vladimir.prusakovs@gmail.com>"]
readme = "README.rst"
license = "MIT"
homepage = "https://github.com/vladimirs-git/fortigate-api"
repository = "https://github.com/vladimirs-git/fortigate-api"
keywords = ["fortigate", "api", "fortios", "firewall", "networking", "telecommunication"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
# "Operating System :: FortiOS",
"Topic :: System :: Networking :: Firewalls",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Natural Language :: English",
]
[tool.poetry.dependencies]
python = "^3.8"
ciscoconfparse = "^1.9.28"
netmiko = "^4.2.0"
requests = "^2.28"
[tool.poetry.group.dev.dependencies]
dictdiffer = "^0.9.0"
mypy = "^1.6.1"
pydocstyle = "^6.3.0"
pygments = "^2.16.1"
pylint = "^3.0.2"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
restructuredtext-lint = "^1.4.0"
twine = "^4.0.2"
types-requests = "^2.31.0.10"
[tool.setuptools.package-data]
vpnetbox = ["py.typed"]
[tool.poetry.extras]
test = ["pytest"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/vladimirs-git/fortigate-api/issues"
"Download URL" = "https://github.com/vladimirs-git/fortigate-api/archive/refs/tags/1.3.1.tar.gz"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"