2026-05-08 17:41:15 +09:00
|
|
|
[project]
|
2026-05-14 10:35:31 +09:00
|
|
|
name = "ontology-platform"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
description = "Fast ontology extraction platform with lightweight JSON-based candidate extraction and optional OntoCast RDF refinement."
|
|
|
|
|
requires-python = ">=3.12"
|
2026-05-08 17:41:15 +09:00
|
|
|
dependencies = [
|
|
|
|
|
"fastapi>=0.110",
|
|
|
|
|
"pydantic>=2",
|
2026-05-14 10:35:31 +09:00
|
|
|
"pydantic-settings>=2",
|
2026-05-08 17:41:15 +09:00
|
|
|
"PyYAML>=6",
|
|
|
|
|
"requests>=2.31",
|
2026-05-14 10:35:31 +09:00
|
|
|
"trafilatura[all]>=2.0.0",
|
2026-05-08 17:41:15 +09:00
|
|
|
"uvicorn[standard]>=0.29",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2026-05-14 11:50:23 +09:00
|
|
|
test = ["pytest>=8", "pytest-asyncio>=0.23"]
|
2026-05-08 17:41:15 +09:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
pythonpath = ["."]
|
|
|
|
|
addopts = "-p no:cacheprovider"
|
2026-05-14 11:50:23 +09:00
|
|
|
asyncio_mode = "auto"
|