-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (65 loc) · 1.64 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
65
66
67
68
69
70
71
72
73
[project]
name = "boilermaker-servicebus"
version = "0.6.0"
description = "An async python Background task system using Azure Service Bus Queues"
authors = [
{ "name" = "Erik Aker", "email" = "eaker@mulliganfunding.com" },
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aio-azure-clients-toolbox>=0.1.0",
"anyio >= 4.7.0",
"azure-core-tracing-opentelemetry >= 1.0.0b11",
"azure-servicebus >= 7.12.3",
"azure-identity >= 1.19.0",
"opentelemetry-api >= 1.29.0",
"pydantic >= 2.10.3",
"pydantic-settings >= 2.5.2",
]
[tool.uv]
dev-dependencies = [
"build>=1.2.1",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6",
"pytest-mypy>=0.10.3",
"ruff>=0.8.2",
]
[build-system]
requires = ["setuptools", "versioningit"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
minversion = "8.3"
pythonpath = "."
asyncio_mode = "auto"
xfail_strict = "True"
addopts = "--cov-report=term-missing:skip-covered --cov=boilermaker --strict-config --strict-markers --cov-report html"
testpaths = ["tests"]
filterwarnings = [
"error"
]
[tool.ruff]
src = ["boilermaker", "tests"]
fix = true
show-fixes = true
output-format = "full"
line-length = 110
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle error
"F", # pyflakes
"FA", # flake8-future-annotations
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"W", # pycodestyle warning
]
ignore = ["N818", "N805"] # exception naming
[tool.ruff.lint.isort]
force-single-line = false
order-by-type = false