-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
116 lines (107 loc) · 2.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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "elasticsearch-serverless"
version = "0.7.0.20231031"
description = "Python client for Elasticsearch Serverless"
readme = "README.rst"
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [
{ name = "Elastic Client Library Maintainers", email = "[email protected]" },
]
maintainers = [
{ name = "Elastic Client Library Maintainers", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
keywords = [
"elasticsearch",
"elastic",
"kibana",
"mapping",
"REST",
"search",
"client",
"index",
]
dependencies = [
"elastic-transport>=8.4.1,<9",
]
[project.optional-dependencies]
async = ["aiohttp>=3,<4"]
requests = ["requests>=2.4.0, <3.0.0" ]
orjson = ["orjson>=3"]
pyarrow = ["pyarrow>=1"]
dev = [
"requests>=2, <3",
"aiohttp",
"pytest",
"pytest-cov",
"pytest-asyncio",
"coverage",
"jinja2",
"python-dateutil",
"unasync",
"pyyaml>=5.4",
"isort",
"black",
"twine",
"build",
"nox",
"orjson",
"numpy",
"pyarrow",
"pandas",
"mapbox-vector-tile",
]
docs = [
"sphinx-rtd-theme>=1.2.2",
"sphinx-autodoc-typehints",
"sphinx==6.2.1",
]
[project.urls]
Documentation = "https://elasticsearch-serverless-python.readthedocs.io"
Homepage = "https://github.com/elastic/elasticsearch-serverless-python"
"Issue Tracker" = "https://github.com/elastic/elasticsearch-serverless-python/issues"
"Source Code" = "https://github.com/elastic/elasticsearch-serverless-python"
[tool.hatch.build.targets.sdist]
include = [
"/elasticsearch_serverless",
"/CHANGELOG.md",
"/CONTRIBUTING.md",
"/LICENSE",
"/NOTICE",
"/README.rst",
"/setup.cfg",
"/docs/sphinx",
]
[tool.hatch.build.targets.wheel]
packages = ["elasticsearch_serverless"]
[tool.pytest.ini_options]
junit_family = "legacy"
xfail_strict = true
markers = "otel"
asyncio_default_fixture_loop_scope = "function"
[tool.isort]
profile = "black"
[tool.coverage.report]
exclude_lines = [
"raise NotImplementedError*",
]
[tool.mypy]
ignore_missing_imports = true