45 lines
978 B
TOML
45 lines
978 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "{{ cookiecutter.project_name }}"
|
|
version = "0.1.0"
|
|
description = "基于 modules-bank 的 fastapi 打包脚手架"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"fastapi[uvicorn]",
|
|
"module-bank",
|
|
"passlib[bcrypt]",
|
|
"pydantic-settings",
|
|
"pydantic[email]",
|
|
"sqlite-vfs",
|
|
"toml",
|
|
"tortoise-orm",
|
|
"uvicorn[standard]",
|
|
"sqlitedict",
|
|
"pyjwt",
|
|
"bcrypt==4.0.1",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
|
default = true
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://mirrors.ustc.edu.cn/pypi/web/simple/"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"aerich",
|
|
"pyinstaller>=6.18.0",
|
|
"requests>=2.32.4",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/{{ cookiecutter.project_name }}"]
|
|
|
|
[project.scripts]
|
|
build = "{{ cookiecutter.project_name }}.scripts.build:main"
|
|
serve = "{{ cookiecutter.project_name }}:serve" |