-
Notifications
You must be signed in to change notification settings - Fork 86
/
pyproject.toml
62 lines (56 loc) · 1.86 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
[tool.poetry]
name = "attack-flow"
version = "2.2.7"
description = "Attack Flow helps executives, SOC managers, and defenders easily understand how attackers compose ATT&CK techniques into attacks by developing a representation of attack flows, modeling attack flows for a small corpus of incidents, and creating visualization tools to display attack flows."
authors = [
"Desiree Beck <[email protected]>",
"Jackie Lasky <[email protected]>",
"Lauren Parker <[email protected]>",
"Mark Haase <[email protected]>",
"Mia Sanchez <[email protected]>",
"Michael Carenzo <[email protected]>",
"Ron Alford <[email protected]>",
]
packages = [{ include = "attack_flow", from = "src" }]
license = "Apache"
[tool.poetry.scripts]
af = "attack_flow.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
jsonschema = "4.17.3"
Sphinx = "^4.5.0"
sphinx-autobuild = "^2021.3.14"
stix2 = "^3.0.1"
sphinx_design = "^0.2.0"
networkx = "^2.8.6"
graphviz = "^0.20.1"
defusedxml = "^0.7.1"
bumpver = "^2022.1119"
[tool.poetry.dev-dependencies]
bandit = "1.7.0"
pytest = "^7.1.2"
pytest-cov = "2.11.1"
pytest-flake8 = "1.0.7"
pytest-mock = "3.5.1"
safety = "^2.3.5"
sphinx-rtd-theme = "^1.0.0"
black = "^22.3.0"
bumpver = "^2022.1119"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "v2.0.0"
version_pattern = "vMAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
[tool.bumpver.file_patterns]
# pep440_version does not have the "v" prefix
"pyproject.toml" = ['version = "{pep440_version}"']
"docs/conf.py" = ['version = "{version}"']
"docs/developers.rst" = [
" Installing the current project: attack-flow ({pep440_version})",
" Attack Flow version {pep440_version}",
]
"src/attack_flow_builder/package.json" = ['"version": "{pep440_version}",']