-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.55 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "boomgate"
authors = [{ name = "Kye Russell", email = "[email protected]" }]
description = "A software supply chain risk management tool"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = ["typer", "rich", "httpx", "parsley"]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Topic :: Security",
"Topic :: Software Development",
"Topic :: System :: Archiving :: Packaging",
"Topic :: Utilities",
]
keywords = ["security", "dependency", "supply chain"]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["ruff", "pre-commit", "mypy", "build", "hatch", "pytest", "pytest-cov"]
docs = ["sphinx", "shibuya", "myst-parser"]
[project.scripts]
boomgate = "boomgate.cli:main"
[project.urls]
Homepage = "https://boomgate.readthedocs.io"
Documentation = "https://boomgate.readthedocs.io"
Changelog = "https://boomgate.readthedocs.io/en/latest/CHANGELOG.html"
Repository = "https://github.com/KyeRussell/boomgate"
Issues = "https://github.com/KyeRussell/boomgate/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/__version__.py"
[tool.hatch.build.targets.sdist]
include = ["src/*", "LICENSE"]
exclude = ["*.json", "pkg/_compat.py"]
[tool.pytest.ini_options]
minversion = "8.1.1"
addopts = "--cov=src --cov-report html"