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",
|
2026-08-15 17:08:12 +07:00
|
|
|
"langgraph>=0.2,<0.3",
|
2026-08-28 23:51:02 +07:00
|
|
|
"langgraph-checkpoint-postgres>=2.0,<3.0",
|
2026-08-15 13:50:24 +07:00
|
|
|
"structlog>=24.4,<25.0",
|
2026-08-18 02:00:53 +07:00
|
|
|
"numpy>=2.0,<3.0",
|
|
|
|
|
"numba>=0.60,<1.0",
|
2026-08-15 13:50:24 +07:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
2026-08-18 02:00:53 +07:00
|
|
|
"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"]
|