34 lines
633 B
TOML
34 lines
633 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",
|
|
"boto3>=1.34,<2",
|
|
"fastapi==0.116.1",
|
|
"pydantic-settings>=2.14.2",
|
|
"passlib==1.7.4",
|
|
"bcrypt>=4.0,<4.1",
|
|
"aiofiles>=25.1.0",
|
|
"aioboto3>=15.5.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",
|
|
]
|