-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (68 loc) · 1.62 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
[project]
name = "bytewax-azure-ai-search"
version = "0.1.2"
description = "Custom sink for Azure AI Search"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.md"}
keywords = ["bytewax", "streaming", "operator"]
authors = [
{name = "Bytewax, Inc.", email = "info@bytewax.io" }
]
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",
"azure-search-documents==11.5.1",
"python-dotenv",
"azure-common==1.1.28",
"azure-core==1.30.2",
"openai==1.44.1",
"types-requests",
"trafilatura==1.12.1"
]
[project.urls]
"Homepage" = "https://github.com/bytewax/bytewax-azure-ai-search"
"Bug Reports" = "https://github.com/bytewax/bytewax-azure-ai-search/issues/new"
"Source" = "https://github.com/bytewax/bytewax-azure-ai-search/"
[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"]