-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (61 loc) · 1.43 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
[project]
name = "bytewax-interval"
version = "0.1"
description = "Interval join operator for Bytewax"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.md"}
keywords = ["bytewax", "streaming", "operator"]
authors = [
{name = "Bytewax, Inc.", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"bytewax>=0.21"
]
[project.urls]
"Homepage" = "https://github.com/bytewax/bytewax-interval"
"Bug Reports" = "https://github.com/bytewax/bytewax-interval/issues/new"
"Source" = "https://github.com/bytewax/bytewax-interval/"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "-v"
[tool.mypy]
disallow_untyped_defs = true
check_untyped_defs = true
[tool.ruff.lint]
select = [
"A",
"B",
"D",
"DTZ",
"E",
"EM",
"F",
"I",
"PL",
"W",
]
ignore = [
"D105",
"E731",
"PLR",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.per-file-ignores]
"examples/*.py" = ["D"]
"test_*.py" = ["D"]