-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (73 loc) · 1.73 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
80
81
82
83
[project]
name = "ray-elasticsearch"
authors = [
{name = "Jan Heinrich Merker", email = "[email protected]"},
]
description = "Unified, type-safe access to web archive APIs."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"ray[data]~=2.31",
"typing-extensions~=4.0",
]
dynamic = ["version"]
[project.optional-dependencies]
tests =[
"bandit[toml]~=1.7",
"elasticsearch~=8.14",
"mypy~=1.6",
"pandas-stubs~=2.0",
"pytest~=8.0",
"pytest-cov>=5,<7",
"pyarrow-stubs>=10,<18",
"ruff>=0.5,<0.8",
]
examples =[
"elasticsearch~=8.14",
"elasticsearch-dsl~=8.14",
"ray[default]~=2.31",
]
[project.urls]
"Homepage" = "https://github.com/janheinrichmerker/ray-elasticsearch"
"Bug Tracker" = "https://github.com/janheinrichmerker/ray-elasticsearch/issues"
[build-system]
requires = ["setuptools>=50", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
"build",
"venv",
"examples",
]
[tool.setuptools_scm]
[tool.ruff]
exclude = [
"build",
"venv",
]
[tool.mypy]
exclude = [
"build",
"venv",
]
ignore_missing_imports = true
[tool.bandit]
exclude_dirs = [
"build",
"venv",
]
[tool.bandit.assert_used]
skips = ["**/test_*.py"]
[tool.pytest.ini_options]
log_cli = "True"