-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 998 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
39
40
41
42
43
44
[tool.poetry]
name = "guesthouse"
version = "0.1.0"
description = "Generate temporary ClickHouse credentials."
authors = ["Maxime Mouchet <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.81.0"
pych-client = "^0.3.1"
PyYAML = "^6.0"
uvicorn = "^0.18.3"
pytest = "^7.1.2"
[tool.poetry.dev-dependencies]
mypy = "^0.971"
pre-commit = "^2.20.0"
pytest-asyncio = "^0.19.0"
pytest-cov = "^3.0.0"
requests = "^2.28.1"
types-PyYAML = "^6.0.11"
[tool.pytest.ini_options]
addopts = "--capture=no --strict-markers"
asyncio_mode = "auto"
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
implicit_reexport = false
no_implicit_optional = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"