-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 931 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
[project]
name = "data-protection"
version = "0.1.0"
description = "Demonstrate data protection with Pydantic classification and log redaction"
readme = "README.md"
authors = [
{ name = "resetvector", email = "brandon.lint@exome.io" }
]
requires-python = ">=3.11"
dependencies = [
"email-validator>=2.3.0",
"faker>=40.18.0",
"fastapi>=0.136.1",
"pydantic>=2.13.4",
"pydantic-settings>=2.14.1",
"scalar-fastapi>=1.8.2",
"uvicorn[standard]>=0.47.0",
]
[project.scripts]
data-protection = "data_protection.main:main"
data-protection-api = "data_protection.api.main:run"
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.3",
"ruff>=0.15.13",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]