-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 924 Bytes
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
[project]
name = "data-transfer-monitoring"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aioboto3>=14.1.0",
"aiokafka>=0.12.0",
"astropy>=7.0.2",
"asyncpg>=0.30.0",
"cachetools>=5.5.2",
"dataclasses-json>=0.6.7",
"faker>=37.1.0",
"httpx>=0.28.1",
"kafkit>=0.3.1",
"marshmallow>=3.26.1",
"prometheus-client>=0.21.1",
]
[tool.ruff]
line-length = 110
target-version = "py311"
exclude = [
"__init__.py",
]
[tool.ruff.lint]
ignore = [
"N802",
"N803",
"N806",
"N812",
"N813",
"N815",
"N816",
"N999",
]
select = [
"E", # pycodestyle
"F", # pyflakes
"N", # pep8-naming
"W", # pycodestyle
]
extend-select = [
"RUF100", # Warn about unused noqa
]
[tool.ruff.lint.pycodestyle]
max-doc-length = 79
[tool.ruff.lint.pydocstyle]
convention = "numpy"