-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (49 loc) · 1.44 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# SPDX-FileCopyrightText: 2023 - 2024 GESIS - Leibniz-Institut für Sozialwissenschaften
# SPDX-FileContributor: Raniere Gaia Costa da Silva <[email protected]>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
[tool.poetry]
package-mode = false
name = "magdalena"
version = "0.3.0"
description = "Microservice to convert Quarto documents into output formats such as HTML and PDF."
authors = ["Raniere Silva <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
flask = "^3.0.2"
docker = "^7.0.0"
jupyter-repo2docker = "^2023.6.0"
gql = {extras = ["requests"], version = "^3.5.0"}
lxml = "^5.1.0"
cssselect = "^1.2.0"
pyjwt = {extras = ["crypto"], version = "^2.8.0"}
celery = "^5.4.0"
flower = "^2.0.1"
redis = "^5.0.7"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
pytest = "^8.1.1"
beautifulsoup4 = "^4.12.3"
requests-mock = "^1.12.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
sphinx-autobuild = "^2024.2.4"
sphinx-copybutton = "^0.5.2"
sphinxcontrib-mermaid = "^0.9.2"
sphinxcontrib-openapi = "^0.8.4"
[tool.poetry.group.prod]
optional = true
[tool.poetry.group.prod.dependencies]
gunicorn = "^21.2.0"
[tool.poetry.group.test.dependencies]
pytest-celery = "^1.0.1"
pytest-mock = "^3.14.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"