-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (79 loc) · 2.08 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "aio-azure-clients-toolbox"
version = "0.2.1"
description = "Async Azure Clients Mulligan Python projects"
authors = [
{ "name" = "Erik Aker", "email" = "[email protected]" },
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiofiles",
"aiohttp",
"anyio",
"azure-core-tracing-opentelemetry",
"azure-cosmos",
"azure-eventgrid",
"azure-eventhub",
"azure-identity",
"azure-servicebus",
"azure-storage-blob",
]
[project.urls]
Repository = "https://github.com/MulliganFunding/aio-azure-clients-toolbox"
Documentation = "https://github.com/MulliganFunding/aio-azure-clients-toolbox"
Releases = "https://github.com/MulliganFunding/aio-azure-clients-toolbox/releases"
[tool.uv]
dev-dependencies = [
"build>=1.2.1",
"asgi-lifespan>=2.1.0",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6",
"pytest-mypy>=0.10.3",
"ruff>=0.6",
"types-aiofiles>=24.1.0.20240626",
"types-requests>=2.32.0.20240712",
]
[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:skip-covered --cov=aio_azure_clients_toolbox --strict-config --strict-markers --cov-report html"
testpaths = [
"tests",
]
filterwarnings = [
"error"
]
[tool.ruff]
src = ["aio_azure_clients_toolbox", "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
[tool.ruff.lint.per-file-ignores]
"aio_azure_clients_toolbox/clients/__init__.py" = ["F401"]
"aio_azure_clients_toolbox/__init__.py" = ["F401"]