-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 779 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
[project]
name = "transit-sh"
version = "0.1.0"
description = "File transfer service without intermediate storage"
authors = [{name = "Rémi Héneault",email = "remi@heneault.fr"}]
requires-python = ">=3.13"
dependencies = [
"uvloop (>=0.21.0, <1.0.0)",
"uvicorn (>=0.35.0, <1.0.0)",
"websockets (>=15.0.1, <16.0.0)",
"httptools (>=0.6.4, <0.7.0)",
"fastapi (>=0.116.1, <1.0.0)",
"pydantic (>=2.11.7, <3.0.0)",
"redis (>=6.3.0, <7.0.0)",
"anyio (>=4.10.0, <5.0.0)",
"jinja2 (>=3.1.6, <4.0.0)",
"sentry-sdk (>=2.34.1, <3.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
pytest = "*"
httpx = "*"
rich = "*"