Files
2026-08-24 10:59:07 +08:00

39 lines
731 B
TOML

[project]
name = "common"
version = "0.2.0"
requires-python = ">=3.12"
dependencies = [
"SQLAlchemy==2.0.51",
"greenlet>=3.0.0",
"apscheduler>=3.11.3",
"asyncmy==0.2.11",
"fastapi==0.116.1",
"pydantic-settings>=2.14.2",
"loguru>=0.7.2",
"passlib==1.7.4",
"bcrypt>=4.0,<4.1",
"aiofiles>=25.1.0",
"aioboto3>=15.5.0",
"cryptography>=49.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/common"]
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
default = true
[dependency-groups]
dev = [
"pytest>=9.1.1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]