diff options
| author | 2024-07-08 21:34:26 +0100 | |
|---|---|---|
| committer | 2024-07-21 13:45:27 +0100 | |
| commit | 7857f36552f8699d2cfd06b7aefbea0899d18c3c (patch) | |
| tree | a90681c2ec35dac6a404c4fa58ad60b27a53a9e7 /pyproject.toml | |
| parent | Update dependency uvicorn to v0.30.3 (#299) (diff) | |
Add SQLAlchemy and alembic dependencies
Diffstat (limited to '')
| -rw-r--r-- | pyproject.toml | 11 | 
1 files changed, 9 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 1bf7240..422d1e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,22 +4,29 @@ version = "0.1.0"  description = "Backend for Python Discord Forms"  authors = ["Joe Banks <[email protected]>"]  license = "MIT" +package-mode = false  [tool.poetry.dependencies]  python = "^3.12" +  starlette = "^0.38.0"  nested_dict = "^1.61"  uvicorn = { extras = ["standard"], version = "^0.30.1" } -motor = "3.5.1" +httpx = "^0.27.0" +  python-dotenv = "^1.0.1"  pyjwt = "^2.8.0" -httpx = "^0.27.0"  pydantic = "^1.10.17"  spectree = "^1.2.10"  deepmerge = "^1.1.1"  sentry-sdk = "^2.7.1"  condorcet = "^0.1.1" +  redis = "^5.0.7" +motor = "3.5.1" +alembic = {version = "^1.13.2", extras = ["tz"]} +sqlalchemy = {version = "^2.0.31", extras = ["asyncio"]} +psycopg = {version = "3.2.1", extras = ["binary"]}  [tool.poetry.group.typing.dependencies]  types-redis = "^4.6.0.20240425"  |