-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (55 loc) · 1.48 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
[tool.poetry]
name = "pydantic_appconfig"
version = "2.0.0"
description = "Helper package for using AWS App Config with Pydantic"
include = ["pydantic_appconfig/py.typed"]
authors = [
"Validus Tech Team <techteam@validusrm.com>",
"Fergus Strangways-Dixon <fergusdixon101@gmail.com>",
]
readme = "README.rst"
repository = "https://github.com/Validus-Risk-Management/aws-appconfig-pydantic"
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.20.8"
botocore = "^1.23.8"
PyYAML = "^6.0"
pydantic = "^2.0.3"
[tool.poetry.group.test.dependencies]
pytest = "^7.2"
pytest-mock = "^3.6.1"
freezegun = "^1.1.0"
pytest-cov = "^2.12.1"
pre-commit = "^2.13"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
flake8 = "^3.9"
isort = "^5.12"
mypy = "^0.910"
pre-commit = "^2.13"
flake8-absolute-import = "^1.0"
flake8-blind-except = "^0.2.0"
flake8-breakpoint = "^1.1.0"
flake8-bugbear = "^21.4.3"
flake8-builtins = "^1.5.3"
flake8-cognitive-complexity = "^0.1.0"
flake8-comprehensions = "^3.5.0"
flake8-docstrings = "^1.6"
flake8-eradicate = "^1.1.0"
flake8-implicit-str-concat = "^0.2.0"
flake8-mutable = "^1.2.0"
flake8-print = "^4.0.0"
flake8-pytest-style = "^1.5.0"
flake8-simplify = "^0.14.1"
pep8-naming = "^0.12.1"
types-PyYAML = "^6.0.12"
boto3-stubs = "^1.20.8"
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
plugins = "pydantic.mypy"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"