-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 2.02 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
[project]
name = "pydantic2-settings-vault"
version = "0.0.1"
description = "A Pydantic v2 settings extension for secure configuration management using HashiCorp Vault OpenSource (OSS) and Enterprise"
authors = [{name = "Sylvain Mouquet", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.10.10",
"concurrency-limiter>=1.1.0",
"pydantic>=2.9.2",
"pydantic-settings>=2.6.0",
"reattempt>=1.1.3",
]
license = { text = "MIT" }
url = "https://github.com/sylvainmouquet/pydantic2-settings-vault"
keywords = ["pydantic", "settings", "vault", "hashicorp", "configuration", "security", "secrets management", "python", "opensource", "enterprise"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
homepage = "https://github.com/sylvainmouquet/pydantic2-settings-vault"
documentation = "https://github.com/sylvainmouquet/pydantic2-settings-vault"
repository = "https://github.com/sylvainmouquet/pydantic2-settings-vault"
changelog = "https://github.com/sylvainmouquet/pydantic2-settings-vault/releases"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"anyio>=4.6.2.post1",
"asyncpg>=0.30.0",
"loguru>=0.7.2",
"pip>=24.2",
"pydocks>=1.2.0",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-mock>=3.14.0",
"python-on-whales>=0.73.0",
"ruff>=0.6.7",
]
[tool.uv.sources]
pydantic2-settings-vault = { path = "pydantic2_settings_vault" }
# pydocks = { path = "../pydocks" }
[tool.hatch.build.targets.wheel]
packages = ["pydantic2_settings_vault"]