-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
35 lines (32 loc) · 917 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
[tool.poetry]
name = "gns3fy"
version = "0.7.2"
description = "Python wrapper around GNS3 Server API"
authors = ["David Flores <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/davidban77/gns3fy"
homepage = "https://github.com/davidban77/gns3fy"
keywords = ["network", "gns3", "python", "restapi", "netdev"]
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.22"
pydantic = "^1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.0"
flake8 = "^3.7"
requests-mock = "^1.6"
pytest-cov = "^2.7"
mkdocs = "^1.0"
pydoc-markdown = "*"
black = "*"
mkdocs-material = "^6.1.0"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"