-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 844 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
[project]
name = "coloco"
version = "0.4.8"
description = "A kit for creating FastAPI + Svelte applications"
authors = [{ name = "Channel Cat", email = "channelcat@gmail.com" }]
dependencies = [
"cyclopts>=3.18.0",
"fastapi>=0.115.0",
"PyJWT>=2.10.1",
"tortoise-orm[asyncpg]>=0.24.0",
"tortoise-pathway==0.2.0",
"type-less>=0.1.16",
"uvicorn>=0.31.0",
]
requires-python = ">=3.12"
readme = "README.md"
license = { text = "MIT" }
[project.scripts]
coloco = "coloco.__main__:app"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.black]
line-length = 100
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 100
[tool.pdm]
distribution = true
[tool.uv.sources]
tortoise-pathway = { git = "https://github.com/channelcat/tortoise-pathway", rev = "iterate-migration-apply" }