forked from TommyTay0712/AIAD
-
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) · 788 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 788 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiad"
version = "0.1.0"
description = "AI Advertising Discovery"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"pydantic>=2.8.0",
"python-dotenv>=1.0.1",
"langgraph>=0.2.0",
"chromadb>=0.5.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"httpx>=0.27.0",
"ruff>=0.6.0",
"mypy>=1.11.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
exclude = ["vendor", ".conda"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["B008"]
[tool.mypy]
python_version = "3.10"
strict = false
ignore_missing_imports = true
files = ["app", "tests"]