-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.15 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "bento_wes"
version = "0.14.6"
description = "Workflow execution service for the Bento platform."
authors = [
"David Lougheed <[email protected]>",
"Simon Chénard <[email protected]>",
"Paul Pillot <[email protected]>",
]
readme = "README.md"
packages = [{include = "bento_wes"}]
include = ["bento_wes/schema.sql"]
repository = "https://github.com/bento-platform/bento_wes"
license = "LGPL-3.0-only"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.10.0"
bento-lib = {extras = ["flask"], version = "^12.2.3"}
celery = {extras = ["redis"], version = "^5.4.0"}
requests = "^2.32.2"
Flask = "~3.0.3"
pydantic = "^2.7.1"
flask-cors = "^5.0.0"
werkzeug = "~3.0.6"
asgiref = "^3.7.2"
[tool.poetry.group.dev.dependencies]
coverage = "^7.4.1"
flake8 = "^7.0.0"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
tox = "^4.12.1"
debugpy = "^1.8.6"
responses = "^0.25.3"