Artifex/pyproject.toml

35 lines
742 B
TOML
Raw Permalink Normal View History

2026-08-15 13:50:24 +07:00
[project]
name = "artifex"
version = "0.1.0"
description = "Artifex V1 bootstrap autonomous engineering control plane"
requires-python = ">=3.12"
dependencies = [
"django>=5.1,<6.0",
"psycopg[binary]>=3.2,<4.0",
"langgraph>=0.2,<0.3",
"langgraph-checkpoint-postgres>=2.0,<3.0",
2026-08-15 13:50:24 +07:00
"structlog>=24.4,<25.0",
"numpy>=2.0,<3.0",
"numba>=0.60,<1.0",
2026-08-15 13:50:24 +07:00
]
[project.optional-dependencies]
dev = [
"pyarrow>=25.0.1",
2026-08-15 13:50:24 +07:00
"pytest>=8.3,<9.0",
"pytest-django>=4.9,<5.0",
"ruff>=0.8,<1.0",
]
[tool.pytest.ini_options]
python_files = ["test_*.py", "*_tests.py"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "DJ"]
ignore = ["DJ001"]