-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (57 loc) · 1.82 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
61
62
63
64
65
66
67
68
# Copyright 2024 Canonical Ltd.
# See LICENSE file for licensing details.
[tool.poetry]
# Charm is not packed as a standard Python package; this information is not used
name = "charm"
version = "0.1.0"
description = ""
authors = []
[tool.poetry.dependencies]
python = "^3.10.12"
ops = "~2.15.0"
pymongo = "^4.7.3"
overrides = "^7.7.0"
tenacity = "^8.2.3"
pyyaml = "^6.0.1"
cffi = "^1.16.0"
jinja2= "^3.1.3"
pyOpenSSL = "^24.2.1"
pure-sasl = ">=0.6.2"
poetry-core= "^1.9.0"
rpds-py = "0.18.0"
[tool.poetry.group.charm-libs.dependencies]
ops = "~2.15.0"
pydantic ="^1.10.7"
cryptography = "^42.0.5"
jsonschema = "^4.22.0"
cosl = "^ 0.0.16"
pyOpenSSL = "^24.2.1"
[tool.poetry.group.format]
optional = true
[tool.poetry.group.format.dependencies]
ruff = "^0.1.6"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
ruff = "^0.1.6"
codespell = "^2.2.6"
[tool.poetry.group.unit.dependencies]
coverage = {extras = ["toml"], version = "^7.5.0"}
pytest = "^8.1.1"
parameterized = "^0.9.0"
pymongo = "^4.7.3"
[tool.poetry.group.integration.dependencies]
allure-pytest = "^2.13.5"
ops = "~2.15.0"
tenacity = "^8.2.3"
pymongo = "^4.7.3"
juju = "^3.5.0"
pytest = "^8.1.1"
pytest-asyncio ="^0.21.1"
pytest-operator = "^0.34.0"
pytest-operator-cache = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.0", subdirectory = "python/pytest_plugins/pytest_operator_cache"}
pytest-operator-groups = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.0", subdirectory = "python/pytest_plugins/pytest_operator_groups"}
allure-pytest-collection-report = {git = "https://github.com/canonical/data-platform-workflows", tag = "v21.0.0", subdirectory = "python/pytest_plugins/allure_pytest_collection_report"}
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"