-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 968 Bytes
/
pyproject.toml
File metadata and controls
36 lines (29 loc) · 968 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
34
35
36
[tool.poetry]
name = "marklogic-python-client"
version = "1.3.1"
description = "Python client for MarkLogic, built on the requests library"
authors = ["MarkLogic <general@developer.marklogic.com>"]
readme = "README.md"
packages = [{include = "marklogic"}]
license = "Apache 2.0"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.5"
requests_toolbelt = "^1.0.0"
# Forcing version to eliminate CVEs; transitive dependency of requests.
urllib3 = "^2.6.3"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
black = ">=23.3,<25.0"
ipykernel = "^6.30.1"
# Forcing latest version to eliminate CVEs; transitive dependency of ipykernel.
jupyter-core = "^5.8.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
# Enables live logging; see https://docs.pytest.org/en/latest/how-to/logging.html#live-logs
log_cli = 1
log_cli_level = "DEBUG"