-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
57 lines (47 loc) · 1.11 KB
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
[tool.poetry]
name = "grpc_boilerplate"
version = "0.12"
description = ""
authors = ["Dmirty Simonov <demalf@gmail.com>"]
license = "MIT"
include = ["grpc_boilerplate"]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
mypy = "*"
grpcio = "^1.41.0"
management-commands = "^0.5"
pytest = "*"
pytest-cov = "*"
grpcio-tools = "*"
types-protobuf = "*"
mypy-protobuf = "*"
[tool.poetry.group.dev.dependencies]
mypy-protobuf = "^3.6.0"
ruff = "^0.6.2"
pytest-asyncio = "^1.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = [".git", ".venv"]
line-length = 140
indent-width = 4
[tool.mypy]
python_version = "3.9"
check_untyped_defs = true
disallow_untyped_defs = false
disallow_incomplete_defs = true
warn_redundant_casts = true
allow_untyped_globals = false
warn_unused_configs = true
strict_optional = true
strict_equality = true
[tool.mypy-.venv]
ignore_errors = true
[[tool.mypy.overrides]]
module = "tests.proto.helloworld_pb2_grpc.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "tests.proto.helloworld_pb2.*"
ignore_errors = true