forked from networktocode/ntc-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 901 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
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ntc_templates"
version = "3.0.0"
description = "TextFSM Templates for Network Devices, and Python wrapper for TextFSM's CliTable."
authors = ["Network to Code <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/networktocode/ntc-templates"
[tool.poetry.dependencies]
python = "^3.6"
textfsm = "^1.1.0"
[tool.poetry.dev-dependencies]
tox = "^3.21.0"
yamllint = "^1.25.0"
black = "^20.8b1"
pytest = "^6.2.1"
"ruamel.yaml" = "^0.16.12"
flake8 = "^3.8.4"
[tool.poetry.extras]
test = ["pytest"]
[tool.black]
line-length = 90
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
)/
| test-templates\.py
'''