-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
73 lines (64 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
72
73
[build-system]
# Todo: Why would I want to use a different 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 = "vultron"
authors = [
{ name = "Allen D. Householder", email="adh@cert.org" },
]
description = "A prototype implementation of the Vultron protocol."
readme = {file="README.md", content-type="text/markdown"}
requires-python = ">=3.8"
keywords =["vultron","cvd","vulnerability disclosure"]
license = {file="LICENSE.md"}
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"dataclasses-json", "markdown-exec", "mkdocs-include-markdown-plugin", "mkdocs-material-extensions",
"mkdocs-material", "mkdocs-print-site-plugin", "mkdocs", "mkdocstrings-python", "mkdocstrings", "networkx",
"owlready2", "pandas", "rdflib", "scipy",
]
dynamic = ["version",]
[project.scripts]
vultrabot_pacman="vultron.bt.base.demo.pacman:main"
vultrabot_robot="vultron.bt.base.demo.robot:main"
vultrabot_cvd="vultron.demo.vultrabot:main"
vultrabot="vultron.scripts.vultrabot:main"
[project.urls]
"Homepage" = "https://certcc.github.io/Vultron"
"Project" = "https://github.com/CERTCC/Vultron"
"Bug Tracker" = "https://github.com/CERTCC/Vultron/issues"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["vultron*"] # 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 = "vultron/_version.py"
#[tools.setuptools.dynamic]
[tool.black]
line-length = 79
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"test",
]