-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 855 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 855 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
[tool.poetry]
name = "guard-pillar-template"
version = "1.0.2"
description = "GuardSuite pillar template (thin pillar layer)"
authors = ["GuardSuite"]
package-mode = true
[[tool.poetry.packages]]
include = "tools"
[[tool.poetry.packages]]
include = "pillar"
from = "src"
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
PyYAML = "^6.0"
structlog = "^24.1.0"
guardsuite-core = { path = "guardsuite_core_stub", develop = true }
[tool.poetry.group.dev.dependencies]
pytest = "^7.4"
pytest-cov = "^4.1"
ruff = "^0.13.0"
black = "^23.9.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
guardsuite-core-validate = "tools.guardsuite_core_validate_cli:main"
generate-template-changelog = "tools.generate_changelog:main"
guardtemplate = "pillar.cli:cli"
pillar = "pillar.cli:cli"