2026-02-02 20:15:38 +05:30
|
|
|
[tool.black]
|
|
|
|
|
line-length = 100
|
|
|
|
|
target-version = ["py312"]
|
|
|
|
|
extend-exclude = '(\.venv|alembic/versions)'
|
|
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
profile = "black"
|
|
|
|
|
line_length = 100
|
|
|
|
|
skip = [".venv", "alembic/versions"]
|
2026-02-04 02:28:51 +05:30
|
|
|
[project]
|
|
|
|
|
name = "openclaw-agency-backend"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"fastapi==0.115.4",
|
|
|
|
|
"uvicorn[standard]==0.30.6",
|
|
|
|
|
"sqlmodel==0.0.22",
|
|
|
|
|
"sqlalchemy==2.0.34",
|
|
|
|
|
"alembic==1.13.2",
|
|
|
|
|
"psycopg[binary]==3.2.1",
|
|
|
|
|
"pydantic-settings==2.5.2",
|
|
|
|
|
"python-dotenv==1.0.1",
|
|
|
|
|
"websockets==12.0",
|
|
|
|
|
"rq==1.16.2",
|
|
|
|
|
"redis==5.1.1",
|
|
|
|
|
"fastapi-clerk-auth==0.0.9",
|
|
|
|
|
"sse-starlette==2.1.3",
|
2026-02-06 02:44:55 +05:30
|
|
|
"jinja2"
|
2026-02-04 02:28:51 +05:30
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"black==24.10.0",
|
|
|
|
|
"flake8==7.1.1",
|
|
|
|
|
"isort==5.13.2",
|
2026-02-04 03:57:19 +05:30
|
|
|
"mypy==1.11.2",
|
2026-02-04 02:28:51 +05:30
|
|
|
"pytest==8.3.3",
|
|
|
|
|
"pytest-asyncio==0.24.0",
|
|
|
|
|
"ruff==0.6.9",
|
|
|
|
|
]
|
2026-02-04 03:57:19 +05:30
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
python_version = "3.12"
|
|
|
|
|
ignore_missing_imports = true
|
|
|
|
|
warn_unused_ignores = true
|
|
|
|
|
warn_redundant_casts = true
|
|
|
|
|
warn_unused_configs = true
|
|
|
|
|
check_untyped_defs = true
|
|
|
|
|
plugins = ["pydantic.mypy"]
|
2026-02-06 11:57:29 +05:30
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
asyncio_default_fixture_loop_scope = "function"
|