-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 926 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 926 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "textual-haystack"
version = "1.0.0"
description = "Haystack integration for Tonic Textual PII detection, transformation, and entity extraction"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10.0,<4.0.0"
dependencies = [
"haystack-ai>=2.0.0",
"tonic-textual>=3.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/haystack_integrations"]
[dependency-groups]
test = [
"pytest>=7.3.0,<8.0.0",
"pytest-asyncio>=0.21.1,<1.0.0",
]
lint = ["ruff>=0.13.1,<0.14.0"]
dev = ["haystack-ai"]
typing = ["mypy>=1.10.0,<2.0.0"]
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.mypy]
python_version = "3.10"
disallow_untyped_defs = true
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"integration: integration tests (require API key)",
]