-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.71 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
[tool.poetry]
name = "omegaconf-cloud-resolvers"
version = "0.2.0"
description = "Omegaconf custom resolvers to retrieve configuration values from cloud services"
authors = ["M Gil Valverde <[email protected]>"]
readme = "README.md"
packages = [{ include = "omegaconf_cloud_resolvers/" }]
[tool.poetry.dependencies]
python = "^3.9"
jmespath = "^1.0.1"
omegaconf = "^2.3.0"
boto3 = { version = "^1.34.16", optional = true }
google-cloud-secret-manager = { version = "^2.20.2", optional = true }
azure-identity = {version = "^1.18.0", optional = true}
azure-keyvault-secrets = {version = "^4.8.0", optional = true}
[tool.poetry.extras]
aws = ["boto3"]
gcp = ["google-cloud-secret-manager"]
az = ["azure-identity", "azure-keyvault-secrets"]
[tool.poetry.group.dev.dependencies]
moto = { extras = ["secretsmanager", "ssm"], version = "^5.0.13" }
pytest-mock = "^3.14.0"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
ruff = "^0.6.2"
bandit = "^1.7.9"
mkdocs = "^1.6.0"
mkdocstrings = { extras = ["python"], version = "^0.25.2" }
mkdocs-material = "^9.5.33"
mike = "^2.1.3"
python-semantic-release = "^9.8.7"
pre-commit = "^3.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
disallow_untyped_defs = true
exclude = ["_static", "build", "examples", "notebooks", "venv", "_exp", "config", "dist", ".env", ".venv"]
[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version",] # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "pip install poetry -U && poetry build" # build dists; needs to install poetry to work with GH Actions