-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
39 lines (34 loc) · 1.09 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "csaf_validator"
authors = [
{name = "Omar Santos"},
]
description = "A Python-based program used to validate a Common Security Advisory Framework (CSAF) JSON file against the CSAF 2.0"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["CSAF", "Common Security Advisory Framework"]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Private :: Do Not Upload",
]
dependencies = [
"jsonschema",
]
version = "0.1.0"
[project.urls]
homepage = "https://github.com/santosomar/csaf_validator"
documentation = "https://github.com/santosomar/csaf_validator#usage"
repository = "https://github.com/santosomar/csaf_validator"
[project.scripts]
csaf-validator = "csaf_validator:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["csaf_validator"]
# This requires setuptools v61.0.0 or greater. If that causes isses we can switch to MANIFEST.in.
[tool.setuptools.package-data]
mypkg = ["*.json"]