-
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.25 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 1.25 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
[project]
name = "udc-enterprise-platform"
version = "0.1.0"
description = "Universal Data Classifier — Enterprise data management platform"
requires-python = ">=3.11"
license = {text = "MIT"}
[tool.uv.workspace]
members = [
"src/udc_metacatalog",
"src/udc_contextvault",
"src/udc_visionlens",
"src/udc_desktopagent",
"src/udc_policyguard",
"src/udc_orchestrator",
]
[tool.ruff]
target-version = "py311"
line-length = 120
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "S", "B", "A", "C4", "DTZ", "T20", "ICN", "PIE", "PT", "RSE", "RET", "SLF", "SIM", "TID", "TCH", "ARG", "PTH", "ERA"]
ignore = ["S101", "S104"]
[tool.ruff.lint.isort]
known-first-party = ["udc_metacatalog", "udc_contextvault", "udc_visionlens", "udc_desktopagent", "udc_policyguard", "udc_orchestrator"]
[tool.black]
line-length = 120
target-version = ["py311"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["src"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-ra -q --strict-markers"
markers = [
"integration: marks tests as integration tests",
"slow: marks tests as slow",
]