summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: f7e38077b66b0d4ea08bdb83cb0715db4b1b1b1f (plain)
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
32
33
34
35
[project]
name = "artberry-backend"
version = "0.1.0"
description = "fastapi postgres artberry website backend"
license = {text = "MIT"}
requires-python = ">=3.14,<4.0"
dependencies = [
    "fastapi (>=0.135.1,<0.136.0)",
    "uvicorn (>=0.41.0,<0.42.0)",
    "pydantic (>=2.12.5,<3.0.0)",
    "argon2 (>=0.1.10,<0.2.0)",
    "redis (>=7.3.0,<8.0.0)",
    "sqlalchemy (>=2.0.48,<3.0.0)",
    "asyncpg (>=0.31.0,<0.32.0)",
    "slowapi (>=0.1.9,<0.2.0)",
    "dotenv (>=0.9.9,<0.10.0)",
    "databases (>=0.9.0,<0.10.0)",
    "passlib (>=1.7.4,<2.0.0)",
    "email-validator (>=2.3.0,<3.0.0)",
    "alembic (>=1.18.4,<2.0.0)",
    "argon2-cffi (>=25.1.0,<26.0.0)",
    "loguru (>=0.7.3,<0.8.0)",
    "pyjwt (>=2.12.1,<3.0.0)",
    "authlib (>=1.6.9,<2.0.0)",
]


[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

[dependency-groups]
dev = [
    "ruff (>=0.15.6,<0.16.0)"
]