Spaces:
Running
Running
File size: 793 Bytes
0ccfe4a bc08d49 0ccfe4a 56fa10c 6e92226 2e5367f 0ccfe4a | 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 | [project]
name = "candle-fire"
version = "0.1.0"
description = "ALS research landscape tool for physicians"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"anthropic>=0.50.0",
"gradio==6.14.0",
"chromadb>=0.5.0",
"networkx>=3.3",
"biopython>=1.84",
"httpx>=0.27.0",
"python-dotenv>=1.2.2",
"rich>=13.0.0",
"sentence-transformers>=3.0.0",
"openai>=2.44.0",
"rapidfuzz>=3.14.5",
"plotly==6.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-mock>=3.14",
"pytest-httpx>=0.35",
"pytest-cov",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
omit = [
"app.py",
"main.py",
"config.py",
"tools.py",
"logging_config.py",
"llm.py",
"prompts.py",
]
|