forked from CERTCC/SSVC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (85 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
95 lines (85 loc) · 2.59 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
# SetupTools
requires = ["setuptools>66", "setuptools-scm"]
build-backend = "setuptools.build_meta"
# Flit
#requires = ["flit_core >=3.2,<4"]
#build-backend = "flit_core.buildapi"
# Hatchling
#requires = ["hatchling"]
#build-backend = "hatchling.build"
# PDM-Backend
#requires = ["pdm-backend"]
#build-backend = "pdm.backend"
[project]
name = "certcc-ssvc"
authors = [
{ name = "CERT/CC SSVC", email="cert+ssvc@cert.org"}
]
description = "Tools for working with a Stakeholder Specific Vulnerability Categorization (SSVC)"
readme = {file="README.md", content-type="text/markdown"}
requires-python = ">=3.12"
keywords =["ssvc","vulnerability management","vulnerability management"]
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.18",
"mkdocs-material-extensions>=1.3.1",
"mkdocstrings>=0.30.0",
"mkdocstrings-python>=1.17.0",
"mkdocs-include-markdown-plugin>=7.1.8",
"pandas>=2.3.2",
"scipy>=1.16.1",
"jsonschema>=4.25.1",
"mkdocs-bibtex>=4.4.0",
"mkdocs-table-reader-plugin>=3.1.0",
"mkdocs-print-site-plugin>=2.8",
"markdown-exec[ansi]>=1.11.0",
"thefuzz>=0.22.1",
"scikit-learn>=1.6.1",
"networkx>=3.4.2",
"pydantic>=2.11.7",
"semver>=3.0.4",
"fastapi[all,standard]>=0.116.1",
"abnf-to-regexp>=1.2.0",
]
dynamic = ["version",]
[project.scripts]
ssvc_csv_analyzer="ssvc.csv_analyzer:main"
ssvc_doctools="ssvc.doctools:main"
[project.urls]
"Homepage" = "https://certcc.github.io/SSVC"
"Project" = "https://github.com/CERTCC/SSVC"
"Bug Tracker" = "https://github.com/CERTCC/SSVC/issues"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["ssvc*"] # package names should match these glob patterns (["*"] by default)
exclude = ["test*"] # exclude packages matching these glob patterns (empty by default)
#namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.setuptools_scm]
version_file = "./src/ssvc/_version.py"
root = "."
local_scheme = "no-local-version"
version_scheme = "no-guess-dev"
#[tools.setuptools.dynamic]
[tool.black]
line-length = 79
target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"test",
]
[dependency-groups]
dev = [
"black>=25.9.0",
"linkchecker>=10.6.0",
"pytest>=8.4.1",
]