Skip to content

Commit b26e961

Browse files
committed
Dependencies
1 parent 2d71e5c commit b26e961

File tree

3 files changed

+45
-27
lines changed

3 files changed

+45
-27
lines changed

.gitignore

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
1-
*.pyc
2-
prompt.md
3-
Pipfile
4-
Pipfile.lock
5-
*.code-workspace
6-
conf/
71
*.bak
8-
other/
9-
TransitApp/
10-
.vscode/
11-
.DS_Store
12-
.dockerignore
13-
Dockerfile
14-
fly.toml
15-
.pytest_cache/
2+
*.code-workspace
163
*.instructions.md
4+
*.pyc
5+
176
CLAUDE.md
187
poetry.lock
19-
pyproject.toml
8+
.dockerignore
9+
.DS_Store
10+
11+
.pytest_cache/
12+
.vscode/
13+
.claude/
14+
.fly/
15+
conf/
16+
other/
17+
TransitApp/

pyproject.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[project]
2+
name = "transit-sh"
3+
version = "0.1.0"
4+
description = "File transfer service without intermediate storage"
5+
authors = [{name = "Rémi Héneault",email = "[email protected]"}]
6+
7+
requires-python = ">=3.13"
8+
dependencies = [
9+
"uvloop (>=0.21.0, <1.0.0)",
10+
"uvicorn (>=0.35.0, <1.0.0)",
11+
"websockets (>=15.0.1, <16.0.0)",
12+
"httptools (>=0.6.4, <0.7.0)",
13+
"fastapi (>=0.116.1, <1.0.0)",
14+
"pydantic (>=2.11.7, <3.0.0)",
15+
"redis (>=6.3.0, <7.0.0)",
16+
"anyio (>=4.10.0, <5.0.0)",
17+
"jinja2 (>=3.1.6, <4.0.0)",
18+
"sentry-sdk (>=2.34.1, <3.0.0)"
19+
]
20+
21+
[build-system]
22+
requires = ["poetry-core>=2.0.0,<3.0.0"]
23+
build-backend = "poetry.core.masonry.api"
24+
25+
[tool.poetry]
26+
package-mode = false
27+
28+
[tool.poetry.group.dev.dependencies]
29+
pytest = "*"
30+
httpx = "*"
31+
rich = "*"
32+

requirements.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)