-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
70 lines (65 loc) · 2.03 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "ttp_templates"
version = "0.5.0"
description = "Template Text Parser Templates collections"
license = "MIT"
include = [
"platform/*.txt",
"yang/*.txt",
"misc/*/*.txt",
]
authors = ["Denis Mulyalin <d.mulyalin@gmail.com>"]
maintainers = ["Denis Mulyalin <d.mulyalin@gmail.com>"]
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 :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = "^3.10"
ttp = { version = ">=0.6.0" }
# docs dependencies for extras definition
mkdocs = { version = "*", optional = true }
mkdocs-material = { version = "*", optional = true }
mkdocs-material-extensions = { version = "*", optional = true }
mkdocstrings = { version = "*", optional = true, extras = ["python"] }
pygments = { version = "*", optional = true }
pymdown-extensions = { version = "*", optional = true }
[tool.poetry.group.dev.dependencies]
bandit = { version = "*" }
black = { version = "*" }
flake8 = { version = "*" }
pre-commit = { version = "*" }
pyenchant = { version = "*" }
pylint = { version = "*" }
pytest = { version = "*" }
cerberus = { version = "*" }
jinja2 = { version = "*" }
pyyaml = { version = "*" }
deepdiff = { version = "*" }
openpyxl = { version = "*" }
tabulate = { version = "*" }
yangson = { version = "*" }
netmiko = { version = "*" }
[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",
]