-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.44 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
[project]
name = "techengine"
version = "0.1.0"
description = "Validation + ingestion engine for the TechAPI dataset"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "GTA Foundation", email = "team@techapi.dev" }]
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"sqlmodel>=0.0.22",
"psycopg[binary]>=3.2",
"pydantic>=2.9",
"pydantic-settings>=2.5",
"scalar-fastapi>=1.0.3",
"httpx>=0.27", # TestClient (app/dump.py) + HTTP for app/coverage sources
"beautifulsoup4>=4.12", # HTML parsing for app/coverage Wikipedia sources
]
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"pytest-cov>=5.0",
"pytest-asyncio>=0.24",
"ruff>=0.6",
"mypy>=1.11",
]
[project.urls]
Homepage = "https://techapi.dev"
Repository = "https://github.com/GetTechAPI/TechEngine"
Data = "https://github.com/Seungpyo1007/TechAPI"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
python_version = "3.12"
strict = true
plugins = ["pydantic.mypy"]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
asyncio_mode = "auto"
pythonpath = ["."]
[tool.coverage.run]
source = ["app"]
omit = ["app/main.py"]