-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.47 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
[tool.poetry]
name = "pydantic-vault"
version = "1.0.0"
description = "A simple extension to Pydantic BaseSettings that can retrieve secrets from Hashicorp Vault"
authors = ["Thomas Gaudin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/nymous/pydantic-vault"
documentation = "https://github.com/nymous/pydantic-vault"
keywords = ["hashicorp", "vault", "hvac", "pydantic"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Topic :: Security"
]
packages = [
{ include = "pydantic_vault", from = "src" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/nymous/pydantic-vault/issues"
"Changelog" = "https://github.com/nymous/pydantic-vault/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.7"
pydantic = "^1.8"
hvac = ">=0.10.6"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21"
black = "^23.3.0"
mypy = "^1.4"
isort = "^5.11"
pytest = "^7.4.0"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"
pyfakefs = "^5.2.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"