-
-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 600 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (27 loc) · 600 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
[project]
name = "flatnotes"
version = "5.5.4"
description = "A database-less note taking web app that utilises a flat folder of markdown files for storage."
readme = "README.md"
requires-python = ">=3.13,<3.14"
dependencies = [
"whoosh==2.7.4",
"fastapi==0.141.1",
"uvicorn[standard]==0.52.1",
"aiofiles==25.1.0",
"python-jose[cryptography]==3.5.0",
"pyotp==2.10.0",
"qrcode==8.2",
"python-multipart==0.0.32",
]
[dependency-groups]
dev = [
"black",
"flake8",
"rope",
"isort",
]
[tool.isort]
profile = "black"
line_length = 79
src_paths = ["server"]