-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fila-python"
version = "0.1.0"
description = "Python client SDK for the Fila message broker"
readme = "README.md"
license = "AGPL-3.0-or-later"
requires-python = ">=3.10"
dependencies = [
"grpcio>=1.60.0",
"protobuf>=4.25.0",
]
[project.optional-dependencies]
dev = [
"grpcio-tools>=1.60.0",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.3",
"mypy>=1.8",
"mypy-protobuf>=3.5",
]
[tool.setuptools.packages.find]
include = ["fila*"]
[tool.ruff]
target-version = "py310"
line-length = 100
exclude = ["fila/v1/"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM", "TCH"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
module = "fila.v1.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "grpc.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"