-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 854 Bytes
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
[project]
name = "todo-app"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "DiPbas", email = "bas.verburg@digital-power.com" }
]
dependencies = [
"fastapi[standard]>=0.115.0",
"sqlalchemy>=2.0.35",
"sqlmodel>=0.0.22",
"psycopg2",
"pytest>=8.3.3",
"testcontainers>=4.8.2",
"factory-boy>=3.3.1",
"httpx>=0.27.2",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
virtual = true
dev-dependencies = []
[tool.rye.scripts]
dev = {chain = ["dev:postgres", "dev:fastapi"]}
"dev:fastapi" = "fastapi dev src/todo_app/main.py"
"dev:postgres" = "docker compose up -d postgres"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/todo_app"]