-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
32 lines (27 loc) · 940 Bytes
/
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
[tool.poetry]
name = "argilla-plugins"
version = "0.1.3"
description = "🔌 Open-source plugins for with practical features for Argilla using listeners."
authors = ["david <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "argilla_plugins"}]
[tool.poetry.dependencies]
python = ">=3.8,<3.11.0"
argilla = {extras = ["listeners", "server"], version = "^1.3.0"}
typer = "^0.7.0"
rich = {extras = ["jupyter"], version = "^13.0.0"}
# optionals reporting
datapane = { version = "^0.15.5", optional = true }
great-expectations = { version = "^0.15", optional = true }
classy-classification = "^0.6.2"
asyncio = "^3.4.3"
[tool.poetry.extras]
reporting-datapane = ["datapane"]
reporting-greatexpectations = ["great-expectations"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-mock = "^3.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"