-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 861 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "demo-fastapi"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "wwfyde", email = "[email protected]" }
]
dependencies = [
"fastapi[all]>=0.115.0",
"pip>=24.2",
"sqlalchemy>=2.0.36",
"alembic>=1.13.2",
"redis>=5.0.8",
"celery>=5.4.0",
"logfire[fastapi,psycopg,redis]>=0.52.0",
"python-jose>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"psycopg[asyncio,binary,pool]>=3.2.1",
"tqdm>=4.66.5",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
#managed = true
dev-dependencies = [
"jupyterlab>=4.2.5",
"ipython>=8.27.0",
"ruff-lsp>=0.0.57",
"ruff>=0.6.7",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/demo_fastapi"]