forked from advanced-security/validate-secrets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.12 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "validate-secrets"
version = "1.0.0"
description = "Extensible secret validation tool for GitHub Secret Scanning and beyond"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Stefan @theztefan Petrushevski", email = "theztefan@github.com"},
{name = "Paul @aegilops Hodgkinson", email = "aegilops@github.com"},
]
requires-python = ">=3.11"
dependencies = [
"defusedcsv>=2.0.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"click>=8.1.0",
"rich>=13.0.0",
"urllib3>=2.0.0",
]
[project.urls]
Home = "https://github.com/advanced-security/validate_secrets"
[project.scripts]
validate-secrets = "validate_secrets.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/validate_secrets"]
[tool.black]
line-length = 100
target-version = ['py311']
include = '\.pyi?$'
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[dependency-groups]
dev = [
"pytest>=8.4.0",
"pytest-cov>=6.1.1",
"black>=25.0.0",
]