-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.35 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=6.4"]
build-backend = "setuptools.build_meta"
[project]
name = "PydanticSettings"
version = "1.0.0"
description = "Dynamic environment and configuration management with Pydantic."
authors = [
{ name = "David Wadsworth" }
]
license = { text = "MIT" }
keywords = ["pydantic", "environment", "configuration", "secrets-management", "async"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"pydantic>=1.10.2",
"pydantic-settings>=2.6.1",
"python-dotenv>=1.0.0",
"cryptography>=3.4.8",
"PyYAML>=6.0"
]
[project.optional-dependencies]
aws = ["boto3>=1.17.0"]
azure = ["azure-keyvault-secrets>=4.3.0", "azure-identity>=1.5.0"]
google = ["google-cloud-secret-manager>=2.7.0"]
[project.urls]
Homepage = "https://github.com/saviornt/Pydantic-Settings"
Documentation = "https://github.com/saviornt/Pydantic-Settings#readme"
Source = "https://github.com/saviornt/Pydantic-Settings"
Bug-Tracker = "https://github.com/saviornt/Pydantic-Settings/issues"
[project.scripts]
pydantic_settings = "PydanticSettings.cli:PydanticSettingsCLI.cli"
[tool.setuptools.packages.find]
where = ["src"]