32 lines
601 B
TOML
32 lines
601 B
TOML
[project]
|
|
name = "tls-analyzer"
|
|
version = "0.1.0"
|
|
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",
|
|
]
|