-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 749 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 749 Bytes
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
[tool.poetry]
name = "booklogr-api"
version = "1.7.0"
description = "API for Booklogr"
authors = ["Andreas Backström <mozzo242@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "api"}]
[tool.poetry.dependencies]
python = "^3.10"
Flask = "3.1.2"
python-dotenv = "1.2.1"
Flask-JWT-Extended = "4.7.1"
flask-cors = "6.0.2"
psycopg2 = "2.9.11"
flask-marshmallow = "1.3.0"
flask-sqlalchemy = "3.1.1"
marshmallow-sqlalchemy = "1.4.2"
Flask-Migrate = "4.1.0"
gunicorn = "23.0.0"
flasgger = "0.9.7.1"
requests = "2.32.5"
mastodon-py = "2.1.4"
marshmallow = "4.1.1"
flask-mail = "0.10.0"
[tool.poetry.group.dev.dependencies]
pytest = "8.4.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"