-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.22 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
[tool.poetry]
name = "tmac"
version = "0.0.9"
description = "Agile Threat Modeling as Code"
authors = ["hupe1980"]
repository = "https://github.com/hupe1980/tmac"
homepage = "https://github.com/hupe1980/tmac"
license = "MIT"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
keywords = [
"agile",
"decsecops",
"threat-modeling",
"cybersecurity",
"appsec",
"jupyter-notebook",
"OpenThreatModel",
"otm",
]
[tool.poetry.dependencies]
python = "^3.11"
tabulate = "^0.9.0"
diagrams = "^0.23.1"
jinja2 = "^3.1.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
black = "^22.12.0"
jupyter = "^1.0.0"
mypy = "^0.991"
types-tabulate = "^0.9.0.0"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.mypy]
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"diagrams.*",
"IPython",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = [
"tests"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:"
]