-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (31 loc) · 894 Bytes
/
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
[tool.poetry]
name = "pydantic-settings-file-envar"
version = "0.1.0"
repository = "https://github.com/h4l/pydantic-settings-file-envar"
description = "Load pydantic settings from files named by _FILE suffix environment variables"
authors = ["Hal Blackburn <hwtb2@cam.ac.uk>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
pydantic-settings = "^2.0.0"
exceptiongroup = { version = "^1.1.3", python = "<3.11" }
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
[tool.poetry.group.lint.dependencies]
flake8 = { version = "^6.1.0", python = ">=3.8.1" }
black = "^23.9.1"
mypy = "^1.5.1"
isort = "^5.12.0"
flake8-pyproject = "^1.2.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
src_paths = ["."]
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
[tool.mypy]
strict = true