-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vault-db-injector"
version = "1.0"
description = "vault-db-injector credentials with Kubernetes and Vault"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "Numberly", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"mkdocs>=1.5.3",
"mkdocs-static-i18n",
]
[project.urls]
Documentation = "https://github.com/numberly/vault-db-injector#readme"
Download = "https://github.com/numberly/vault-db-injector/tags"
Homepage = "https://github.com/numberly/vault-db-injector"
Source = "https://github.com/numberly/vault-db-injector"
Tracker = "https://github.com/numberly/vault-db-injector/issues"
[project.optional-dependencies]
material = ["mkdocs-material>=9.2.5"]
[tool.hatch.envs.docs]
dependencies = [
"mkdocs-material>=9.2.5"
]
[tool.hatch.build.targets.wheel]
packages = ["src/vault_db_injector"]