-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
182 lines (168 loc) · 4.81 KB
/
Copy pathpyproject.toml
File metadata and controls
182 lines (168 loc) · 4.81 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
[project]
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
name = "qserv-kafka"
description = "Kafka bridge to qserv"
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
keywords = ["rubin", "lsst"]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Natural Language :: English",
"Operating System :: POSIX",
"Private :: Do Not Upload",
"Typing :: Typed",
]
requires-python = ">=3.14"
dependencies = [
"aiojobs>=1.3",
"arq>=0.26",
"asyncmy>=0.2,<0.2.12", # unstable memory usage in newer versions
"bitstring>=4.3",
"fastapi>=0.112.2,<0.140", # faststream incompatibility
"faststream[kafka]>=0.6",
"google-cloud-bigquery>=3.25.0",
"google-cloud-bigquery-storage>=2.27",
"httpx>=0.27",
"humanize>=4.15.0",
"memray>=1.17",
"pyarrow>=21",
"pydantic>=2.11",
"pydantic-settings>=2.8",
"redis>=5",
"rubin-gafaelfawr",
"rubin-repertoire>=0.6",
"safir[arq,db,kafka,redis]>=14.1.2",
"structlog>24",
"uvicorn[standard]>=0.34",
"vo-models>=0.4",
]
dynamic = ["version"]
[project.scripts]
qserv-kafka = "qservkafka.cli:main"
[project.urls]
Source = "https://github.com/lsst-sqre/qserv-kafka"
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"aiokafka>=0.12",
"asgi-lifespan",
"coverage[toml]",
"multipart",
"pytest!=9.1.0", # https://github.com/pytest-dev/pytest/issues/14591
"pytest-asyncio",
"pytest-cov",
"pytest-sugar",
"pytest-timeout",
"respx",
"rubin-repertoire",
"safir[testcontainers]>=11",
"scriv[toml]",
"testcontainers[mysql,redis]",
"uv",
]
lint = [
"prek",
"ruff>=0.9",
]
nox = [
"nox",
"nox-uv",
]
typing = [
"mypy>=1.19",
]
[tool.coverage.run]
parallel = true
branch = true
source = ["qservkafka"]
[tool.coverage.paths]
source = ["src"]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"if settings.DEBUG",
"raise AssertionError",
"raise NotImplementedError",
"raise RuntimeError",
"if 0:",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_defs = true
enable_error_code = [
"deprecated",
"exhaustive-match",
"explicit-override",
"ignore-without-code",
"redundant-expr",
"redundant-self",
"truthy-iterable",
"unused-awaitable",
]
ignore_missing_imports = true
local_partial_types = true
plugins = ["pydantic.mypy"]
no_implicit_reexport = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_ignores = true
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_untyped_fields = true
[tool.pytest]
asyncio_default_fixture_loop_scope = "function"
asyncio_mode = "strict"
filterwarnings = [
# dataclases-avroschema hasn't been fully updated for Python 3.14
"ignore:.*'_UnionGenericAlias' is deprecated.*:DeprecationWarning",
# testcontainers hasn't updated all of the community modules
"ignore:.*wait_container_is_ready decorator.*:DeprecationWarning",
"ignore:.*wait_for_logs function.*:DeprecationWarning",
# faststream has not been updated for Python 3.14
"ignore:.*asyncio.iscoroutinefunction.*:DeprecationWarning",
]
# The python_files setting is not for test detection (pytest will pick up any
# test files named *_test.py without this setting) but to enable special
# assert processing in any non-test supporting files under tests. We
# conventionally put test support functions under tests.support and may
# sometimes use assert in test fixtures in conftest.py, and pytest only
# enables magical assert processing (showing a full diff on assert failures
# with complex data structures rather than only the assert message) in files
# listed in python_files.
python_files = ["tests/*.py", "tests/*/*.py"]
# Use the generic Ruff configuration in ruff.toml and extend it with only
# project-specific settings. Add a [tool.ruff.lint.extend-per-file-ignores]
# section for project-specific ignore rules.
[tool.ruff]
extend = "ruff-shared.toml"
[tool.ruff.lint.isort]
known-first-party = ["qservkafka", "tests"]
split-on-trailing-comma = false
[tool.scriv]
categories = [
"Backwards-incompatible changes",
"New features",
"Bug fixes",
"Other changes",
]
entry_title_template = "{{ version }} ({{ date.strftime('%Y-%m-%d') }})"
format = "md"
md_header_level = "2"
new_fragment_template = "file:changelog.d/_template.md.jinja"
skip_fragments = "_template.md.jinja"
[tool.setuptools_scm]