-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (100 loc) · 2.9 KB
/
pyproject.toml
File metadata and controls
118 lines (100 loc) · 2.9 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
[build-system]
requires = ["hatchling", "hatch-regex-commit"]
build-backend = "hatchling.build"
[project]
name = "nextline-alert"
dynamic = ["version"]
description = 'A plugin of nextline-graphql. Emit alerts to Campana'
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE.txt"]
authors = [{ name = "Tai Sakuma" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["nextline", "plugin", "graphql", "alert", "campana"]
dependencies = ["nextline-graphql>=0.9.1", "httpx>=0.26"]
[dependency-groups]
tests = [
"pytest-asyncio>=0.25",
"pytest-cov>=4.1",
"pytest-timeout>=2.2",
"pytest>=8.2",
"hypothesis>=6.130",
"respx>=0.22.0",
"deepdiff>=7.0",
]
type-check = ["mypy<1.19"] # 1.19 incompatible with strawberry-graphql 0.287.0
[project.urls]
Documentation = "https://github.com/simonsobs/nextline-alert#readme"
Issues = "https://github.com/simonsobs/nextline-alert/issues"
Source = "https://github.com/simonsobs/nextline-alert"
[project.entry-points."nextline_graphql"]
alert = "nextline_alert:Plugin"
[tool.hatch.version]
source = "regex_commit"
path = "src/nextline_alert/__about__.py"
check_dirty = false
tag_sign = false
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
timeout = 60
addopts = "--doctest-modules"
# doctest_optionflags = ["ELLIPSIS", "NORMALIZE_WHITESPACE",]
doctest_optionflags = ["ELLIPSIS"]
log_cli = false
log_cli_level = "INFO"
[tool.ruff]
line-length = 88
[tool.ruff.format]
quote-style = "preserve"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
]
ignore = [
"E203", # Whitespace before '{symbol}'
"E265", # Block comment should start with #
"E266", # Too many leading # before block comment
"E501", # Line too long ({width} > {limit})
"E741", # Ambiguous variable name '{name}'
]
[tool.ruff.lint.mccabe]
max-complexity = 20
[tool.ruff.lint.isort]
known-first-party = ["nextline", "nextline_graphql"]
[tool.coverage.run]
source_pkgs = ["nextline_alert", "tests"]
branch = true
parallel = true
omit = ["src/nextline_alert/__about__.py"]
[tool.coverage.paths]
nextline_alert = ["src/nextline_alert", "*/nextline-alert/src/nextline_alert"]
tests = ["tests", "*/nextline-alert/tests"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
'if __name__ == "__main__":',
"if TYPE_CHECKING:",
"\\.\\.\\.$",
]
[tool.isort]
profile = "black"
[tool.mypy]
plugins = "strawberry.ext.mypy_plugin"
[[tool.mypy.overrides]]
module = ["dynaconf.*", "apluggy.*"]
ignore_missing_imports = true