-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (59 loc) · 1.21 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
62
63
64
[tool.poetry]
name = "rest_docker_builder"
version = "0.1.0"
description = ""
authors = ["Abdul Mateen <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "3.10"
fastapi = ">=0.75.0"
fastapi-utils = ">=0.1.0"
loguru = ">=0.6.0"
uvicorn = ">=0.15.0"
celery = ">=5.2.6"
pydantic = ">=1.8.2"
redis = ">=3.3.10"
docker = ">=5.0.3"
pytest = "^7.1.2"
flower = "^1.0.0"
black = "^19.10b0"
sentry-sdk = "^1.6.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
allow_redefinition = false
check_untyped_defs = true
disallow_untyped_decorators = false
disallow_any_explicit = true
disallow_any_generics = true
disallow_untyped_calls = true
ignore_errors = false
ignore_missing_imports = true
implicit_reexport = false
local_partial_types = true
strict_optional = true
strict_equality = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
warn_no_return = true
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''