Spaces:
Sleeping
Sleeping
File size: 694 Bytes
f8d77e4 22195c1 f8d77e4 01a873b | 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 | [project]
name = "beacon"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"anthropic>=0.50.0",
"langgraph>=1.2.0",
"openai>=1.0.0",
"python-dotenv>=1.2.2",
"rich>=13.0.0",
"gradio>=6.14.0,<7.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-mock>=3.14",
"pytest-httpx>=0.35",
"freezegun>=1.5",
"pytest-cov",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
omit = [
"app.py",
"config.py",
"translations.py",
"tools.py",
"beacon_logging.py",
"clinical_trials_guru.py",
"main.py",
"_console.py",
]
|