Skip to content

Commit cdd39d9

Browse files
committed
build: migrate from pipenv to uv
1 parent 3b8d776 commit cdd39d9

File tree

4 files changed

+21
-27
lines changed

4 files changed

+21
-27
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
sqlite.db
21
.vscode/*
32
!.vscode/settings.json
43
!.vscode/tasks.json
@@ -70,4 +69,3 @@ coverage
7069
package-lock.json
7170
pnpm-lock.yaml
7271
.env
73-
/backend/Pipfile.lock

backend/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
uv.lock
2+
sqlite.db
3+
.venv

backend/Pipfile

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

backend/pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[project]
2+
name = "backend"
3+
version = "0.1.0"
4+
description = ""
5+
requires-python = ">=3.13"
6+
dependencies = [
7+
"aiosqlite>=0.20.0",
8+
"alembic>=1.14.0",
9+
"asyncpg>=0.30.0",
10+
"fastapi[standard]>=0.115.5",
11+
"greenlet>=3.1.1",
12+
"psycopg2-binary>=2.9.10",
13+
"python-dotenv>=1.0.1",
14+
"sqlalchemy>=2.0.36",
15+
"sqlmodel>=0.0.22",
16+
"uuid>=1.30",
17+
"uvicorn>=0.32.1",
18+
]

0 commit comments

Comments
 (0)