-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (30 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
39 lines (30 loc) · 811 Bytes
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>=68", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "castops"
dynamic = ["version"]
description = "CAST — DevSecOps governance toolkit for GitHub Actions and GitLab CI"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.9"
dependencies = [
"typer>=0.12",
"rich>=13",
]
[project.scripts]
cast = "cast_cli.main:app"
[project.urls]
Homepage = "https://github.com/castops/cast"
Repository = "https://github.com/castops/cast"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"cast_cli.templates" = ["**/*.yml"]
[tool.setuptools_scm]
[project.optional-dependencies]
dev = ["pytest>=8"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py39"