-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
47 lines (39 loc) · 1.01 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
[tool.poetry]
name = "threat-modeling-with-attack"
version = "1.0.1"
description = "Threat Modeling with ATT&CK"
authors = ["CTID <[email protected]>"]
license = "Apache"
[tool.poetry.dependencies]
python = "^3.9"
sphinx-toolbox = "^3.5.0"
[tool.poetry.group.dev.dependencies]
bandit = "1.7.0"
black = "^22.3.0"
bumpver = "^2022.1119"
pytest = "^7.1.2"
pytest-cov = "2.11.1"
safety = "1.10.3"
isort = "^5.12.0"
mypy = "^1.2.0"
sphinx = "^5.0.0"
sphinx-autobuild = "^2021.3.14"
sphinx-rtd-theme = "^1.0.0"
[tool.black]
line-length = 88
target-version = ['py39']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "v1.0.1"
version_pattern = "vMAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['version = "{pep440_version}"', 'version = "{version}"']
"docs/conf.py" = ['version = "{version}"']
[tool.isort]
profile = "black"
skip_gitignore = true