-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (48 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (48 loc) · 1.11 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 = "ai-linkmo"
version = "0.1.0"
description = "Demonstrate four access patterns for AI Governance"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"ninja",
# "ai-atlas-nexus[vllm]>=1.2.1",
"ai-atlas-nexus>=1.2.1",
"flask",
"cymple>=0.12.0",
"fastapi>=0.124.2",
"uvicorn>=0.38.0",
"ldap3>=2.9.1",
"aiofiles>=25.1.0",
"autopep8>=2.3.2",
"rich>=14.3.3",
"requests>=2.32.0,<2.33.0",
"urllib3>=1.26.0,<2.0.0",
"charset-normalizer>=2.0.0,<3.4.0",
"chardet>=4.0.0,<6.0.0",
]
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pytest-timeout>=2.2.0",
]
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["lib/test"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--tb=short",
"-p", "no:typeguard",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"byod_required: marks tests requiring BYOD data files in byo/data/",
]
filterwarnings = [
"ignore::DeprecationWarning",
]