-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 941 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 941 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
40
41
42
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-security-auditing"
version = "0.6.0"
description = "Reusable GitHub Action for Python security auditing with bandit and pip-audit"
license = { text = "MIT" }
requires-python = ">=3.13"
dependencies = [
"pydantic-settings>=2.0",
"pip-audit>=2.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-mock>=3.14",
"mypy>=1.0",
"ruff>=0.5",
"types-requests",
"types-PyYAML",
"pyyaml>=6.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/python_security_auditing"]
[tool.ruff]
line-length = 100
extend-exclude = ["integration-tests/cases"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.mypy]
python_version = "3.13"
strict = true
exclude = ["integration-tests/cases"]
[tool.pytest.ini_options]
testpaths = ["tests", "integration-tests/tests"]
pythonpath = ["integration-tests"]