-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1.27 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "argilla-llama-index"
description = "Argilla-LlamaIndex Integration"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = ["annotation", "llm", "monitoring"]
authors = [{ name = "Argilla", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"argilla >= 2.2.0, < 3.0.0",
"llama-index >= 0.10.20, < 1.0",
"markdown >= 3.6.0",
"packaging >= 23.2",
"typing-extensions >= 4.3.0",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black == 23.10.0", "ruff == 0.1.0", "pre-commit >= 3.5.0"]
tests = ["pytest >= 7.4.0"]
[project.urls]
Documentation = "https://github.com/argilla-io/argilla-llama-index"
Issues = "https://github.com/argilla-io/argilla-llama-index/issues"
Source = "https://github.com/argilla-io/argilla-llama-index"
[tool.hatch.version]
path = "src/argilla_llama_index/__init__.py"
[tool.ruff]
line-length = 88
select = ["E", "W", "F", "I", "C", "B"]
ignore = ["E501", "B905", "B008"]
exclude = ["docs"]
[tool.pytest.ini_options]
testpaths = ["tests"]