9314ac6942
- New timeline UI: interleaved LLM reasoning + tool call display - Fix: run_log truncation for large tool outputs - Fix: lat/lon + values reduced to ~1% (was 99%) - Fix: @csrf_exempt on upload/delete endpoints - Fix: DATA_UPLOAD_MAX_NUMBER_FILES for 1998-file upload - Fix: dtype alignment for multi-batch CSV processing - New: tests/test_e2e_full.py with real DeepSeek LLM - New: 1998-file test data generator
32 lines
601 B
TOML
32 lines
601 B
TOML
[project]
|
|
name = "tls-analyzer"
|
|
version = "1.1.2"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"django==4.2.30",
|
|
"mcp==1.28.1",
|
|
"polars==1.42.1",
|
|
"scikit-learn==1.5.2",
|
|
"numpy==1.26.4",
|
|
"pyarrow==25.0.0",
|
|
"pyyaml==6.0.3",
|
|
"pydantic==2.13.4",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"ruff>=0.4.0",
|
|
"mypy>=1.10.0",
|
|
"pytest>=8.0.0",
|
|
"pytest-mock>=3.12.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
filterwarnings = [
|
|
"ignore::DeprecationWarning",
|
|
]
|