-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1 KB
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 = "cdispyutils"
version = "2.5.1"
description = "This package includes several utility Python tools for the Gen3 stack."
authors = ["CTDS UChicago <cdis@uchicago.edu>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.13,<4"
cdiserrors = "*"
cdislogging = "*"
# unless this library explicitly uses features known only to a library version
# above a certain version, allow flexibility for consumers of this library to
# limit the version as necessary
requests = "*"
Flask = "*"
PyJWT = "*"
prometheus-client = "*"
matplotlib = { version = "*", optional = true }
numpy = { version = "*", optional = true }
uwsgi = { version = "*", optional = true }
Werkzeug = { version = "*", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-flask = "*"
mock = "*"
deptry = "^0.24.0"
cryptography = "*"
[tool.poetry.extras]
profiling = ["Werkzeug", "matplotlib", "numpy"]
uwsgi = ["uwsgi"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"