-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
71 lines (66 loc) · 2.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "ttp_templates"
version = "0.3.6"
description = "Template Text Parser Templates collections"
license = "MIT"
include = [
"platform/*.txt",
"yang/*.txt",
"misc/*/*.txt",
]
authors = ["Denis Mulyalin <[email protected]>"]
maintainers = ["Denis Mulyalin <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/dmulyalin/ttp_templates"
repository = "https://github.com/dmulyalin/ttp_templates"
documentation = "https://dmulyalin.github.io/ttp_templates/"
keywords = ["Parsing", "TTP", "regex"]
classifiers = [
"Topic :: Utilities",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = "^3.6"
ttp = { version = ">=0.6.0" }
# docs dependencies for extras definition
mkdocs = { version = "1.2.4", optional = true, markers = "python_version >= '3.7'" }
mkdocs-material = { version = "7.2.2", optional = true, markers = "python_version >= '3.7'" }
mkdocs-material-extensions = { version = "1.0.1", optional = true, markers = "python_version >= '3.7'" }
mkdocstrings = { version = "0.18.*", optional = true, markers = "python_version >= '3.7'", extras = ["python"] }
pygments = { version = "2.11", optional = true, markers = "python_version >= '3.7'" }
pymdown-extensions = { version = "9.3", optional = true, markers = "python_version >= '3.7'" }
[tool.poetry.dev-dependencies]
bandit = { version = "1.7.*", markers = "python_version >= '3.7'" }
black = { version = "22.3.*", markers = "python_version >= '3.7'" }
flake8 = { version = "4.0.*", markers = "python_version >= '3.7'" }
pre-commit = { version = "2.15.*", markers = "python_version >= '3.7'" }
pyenchant = { version = "3.2.*", markers = "python_version >= '3.7'" }
pylint = { version = "2.12.*", markers = "python_version >= '3.7'" }
pytest = { version = "7.1.*", markers = "python_version >= '3.7'" }
cerberus = { version = "1.3.*", markers = "python_version >= '3.7'" }
jinja2 = { version = "3.0.*", markers = "python_version >= '3.7'" }
pyyaml = { version = "6.0", markers = "python_version >= '3.7'" }
deepdiff = { version = "5.8.*", markers = "python_version >= '3.7'" }
openpyxl = { version = "3.0.*", markers = "python_version >= '3.7'" }
tabulate = { version = "0.8.*", markers = "python_version >= '3.7'" }
yangson = { version = "1.4.*", markers = "python_version >= '3.7'" }
netmiko = { version = "3.4.0", markers = "python_version >= '3.7'" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-material-extensions",
"mkdocstrings",
"pygments",
"pymdown-extensions",
]