diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-14 13:31:28 +0200 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-14 13:31:28 +0200 |
| commit | 4d3aa54f80f4ac3bdf927e3746478cec3bcb35e9 (patch) | |
| tree | 6cb0d249f3c2a1de01365dd78d97916297d07f9f /pyproject.toml | |
Initial commit
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4c69154 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,26 @@ +[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)", +] + + +[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)" +] |
