-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (58 loc) · 1.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = [
'hatchling',
'hatch-regex-commit',
]
build-backend = 'hatchling.build'
[project]
name = 'Critic'
authors = [
{name = 'Caleb Syring', email = 'caleb.syring@level12.io'},
]
requires-python = '~=3.13.0'
dynamic = ['version']
readme = 'readme.md'
dependencies = [
"aws-mu>=0.20251205.5",
"boto3>=1.40.31",
"flask>=3.1.2",
"moto[all]>=5.1.14",
"pydantic>=2.7",
"httpx>=0.27",
"polyfactory>=3.2.0",
]
[project.scripts]
'critic' = 'critic.cli:cli'
[dependency-groups]
dev = [
{include-group = "pytest"},
{include-group = "pre-commit"},
{include-group = "audit"},
{include-group = "nox"},
'click',
"env-config-cli>=0.20250626.2",
'hatch',
"pytest-httpx>=0.36.0",
"ruff",
]
# Used by nox
pytest = [
"freezegun>=1.5.5",
'pytest',
'pytest-cov',
'respx>=0.21',
"pytest-httpx>=0.36.0",
]
# Used by nox
pre-commit = [
'pre-commit',
'pre-commit-uv',
]
# Used by nox
audit = [
'pip-audit',
]
# Used by CI
nox = [
'nox',
]