-
Notifications
You must be signed in to change notification settings - Fork 66
/
pyproject.toml
44 lines (37 loc) · 1.03 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
[tool.poetry]
name = "algoliasearch"
version = "4.8.1"
description = "A fully-featured and blazing-fast Python API client to interact with Algolia."
authors = ["Algolia Team"]
license = "MIT"
readme = "README.md"
homepage = "https://www.algolia.com"
repository = "https://github.com/algolia/algoliasearch-client-python"
keywords = ["algolia", "search", "full-text-search", "neural-search"]
classifiers = [
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Intended Audience :: Developers"
]
[tool.poetry.dependencies]
python = ">= 3.8.1"
urllib3 = ">= 1.25.3"
aiohttp = ">= 3.9.2"
requests = ">=2.32.3"
python-dateutil = ">= 2.8.2"
async-timeout = ">= 4.0.3"
pydantic = ">= 2"
[tool.poetry.group.dev.dependencies]
ruff = "== 0.7.1"
pyright = "== 1.1.386"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
ignore = ["E501"]
[tool.ruff.lint.isort]
split-on-trailing-comma = false
[tool.ruff.format]
quote-style = "double"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"