forked from cta-epfl/certificateservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (30 loc) · 889 Bytes
/
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
[tool.poetry]
name = "certificateservice"
version = "0.4.11"
description = ""
authors = ["Bastien Wermeille <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
sentry-sdk = {extras = ["flask"], version = "^2.1.1"}
importlib-metadata = "^7.1.0"
pyopenssl = "^24.0.0"
flask-cors = "^4.0.1"
waitress = "^3.0.0"
[tool.poetry.group.jupyterhub.dependencies]
jupyterhub = "^4.1.5"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
ctadata = { git = "https://github.com/cta-epfl/ctadata.git", tag = "v0.5.2" }
pytest = "^8.1.1"
psutil = "^5.9.5"
pytest-flask = "^1.2.0"
pytest-timeout = "^2.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 78
skip-string-normalization = true
[tool.poetry.scripts]
certificateservice = { callable = "certificateservice.cli:main" }