-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (24 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
26 lines (24 loc) · 820 Bytes
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
[tool.poetry]
name = "app"
version = "0.0.1"
description = "playground for the algoliasearch-client-python repository"
authors = ["Algolia Team <https://alg.li/support>"]
license = "MIT"
readme = "README.md"
homepage = "https://www.algolia.com"
repository = "https://github.com/algolia/api-clients-automation"
[tool.poetry.dependencies]
python = ">= 3.8.1"
algoliasearch = { path = "../../clients/algoliasearch-client-python", develop = true }
ruff = "== 0.14.1"
pyright = "== 1.1.406"
python-dotenv = "==1.2.2"
[tool.poetry.scripts]
search = "app.search:main"
recommend = "app.recommend:main"
ingestion = "app.ingestion:main"
insights = "app.insights:main"
query-suggestions = "app.query_suggestions:main"
abtesting = "app.abtesting:main"
analytics = "app.analytics:main"
personalization = "app.personalization:main"