-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (52 loc) · 1.49 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "nectl"
version = "0.19.3"
description = "An end-to-end Python-based Infrastructure as Code framework for network automation and orchestration."
authors = ["Adam Kirchberger <[email protected]>"]
readme = "README.md"
repository = "https://github.com/adamkirchberger/nectl"
documentation = "https://nectl.netlify.app"
keywords = [
"Network automation",
"Network orchestration",
"Network engineering",
"Automation",
"Orchestration"
]
[tool.poetry.dependencies]
python = "^3.8"
click = "8.0.4"
coloredlogs = "^15.0.1"
pydantic = "^1.8 || ^2"
ipaddress = "^1.0.23"
lxml = "^4.6.3"
tabulate = "^0.8.9"
dpath = "^2.0.5"
napalm = "^4.0.0"
pytest = "^6.2.5"
pytest-forked = "^1.3.0"
[tool.poetry.dev-dependencies]
black = {version = "^21.8b0", allow-prereleases = true}
pylint = "^2.10.2"
mypy = "^0.910"
flake8 = "^3.9.2"
types-setuptools = "^57.0.2"
types-PyYAML = "^5.4.10"
types-tabulate = "^0.8.2"
lxml-stubs = "^0.2.0"
pytest-cov = "^2.12.1"
pytest-click = "^1.0.2"
pytest-env = "^0.6.2"
[tool.poetry.scripts]
nectl = "nectl.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variables = ["nectl/__init__.py:__version__"]
version_toml = ["pyproject.toml:tool.poetry.version"]
tag_format = "{version}"
commit_message = "Automatically generated by python-semantic-release"
branch = "main"
build_command = "pip install poetry && poetry build --format sdist"
upload_to_pypi = false