File size: 654 Bytes
5a11431 a77c60e 5a11431 ee7e79e df51fac 5a11431 | 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 | [build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "acl-anthology-search-api"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"faiss-cpu>=1.8.0",
"openai>=1.30",
"huggingface_hub>=0.23",
"pydantic>=2.6",
"pydantic-settings>=2.2",
"numpy>=1.26",
"tqdm>=4.66",
"acl-anthology>=0.5",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-mock>=3.14",
"pytest-asyncio>=0.23",
]
[tool.setuptools]
packages = ["common", "sync", "app"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|