40 lines
874 B
TOML
40 lines
874 B
TOML
|
|
[project]
|
||
|
|
name = "fund-tracer-backend"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "智析反诈 - 受害人被骗金额归集智能体后端"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"fastapi>=0.115.0",
|
||
|
|
"uvicorn[standard]>=0.34.0",
|
||
|
|
"sqlalchemy[asyncio]>=2.0.0",
|
||
|
|
"asyncpg>=0.30.0",
|
||
|
|
"alembic>=1.14.0",
|
||
|
|
"celery[redis]>=5.4.0",
|
||
|
|
"redis>=5.0.0",
|
||
|
|
"pydantic-settings>=2.0.0",
|
||
|
|
"python-multipart>=0.0.18",
|
||
|
|
"Pillow>=11.0.0",
|
||
|
|
"httpx>=0.28.0",
|
||
|
|
"openpyxl>=3.1.0",
|
||
|
|
"python-docx>=1.1.0",
|
||
|
|
"psycopg2-binary>=2.9.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"pytest>=8.0.0",
|
||
|
|
"pytest-asyncio>=0.24.0",
|
||
|
|
"httpx>=0.28.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
asyncio_mode = "auto"
|
||
|
|
testpaths = ["tests"]
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
include = ["app*"]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=75.0"]
|
||
|
|
build-backend = "setuptools.build_meta"
|