| [project] |
| name = "paper-list-space" |
| version = "0.1.0" |
| description = "A collaborative paper list Space backed by a Hugging Face Dataset repository." |
| requires-python = ">=3.11" |
| dependencies = [ |
| "authlib>=1.3.2", |
| "beautifulsoup4>=4.12", |
| "fastapi>=0.115", |
| "httpx>=0.28", |
| "huggingface_hub>=0.27", |
| "itsdangerous>=2.2", |
| "markdownify>=0.14", |
| "pydantic>=2.10", |
| "uvicorn[standard]>=0.32", |
| ] |
|
|
| [project.optional-dependencies] |
| dev = [ |
| "pytest>=8.3", |
| "pytest-asyncio>=0.24", |
| ] |
|
|
| [tool.pytest.ini_options] |
| pythonpath = ["backend"] |
| testpaths = ["backend/tests"] |
| asyncio_mode = "auto" |
|
|