-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
51 lines (43 loc) · 1.11 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
48
49
50
51
[tool.poetry]
name = "semantic-chunkers"
version = "0.1.0.dev1"
description = "Super advanced chunking methods for AI"
authors = ["Aurelio AI <[email protected]>"]
readme = "README.md"
packages = [{include = "semantic_chunkers"}]
[project]
license = {file = "LICENSE"}
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pydantic = "^2.5.3"
numpy = "^1.26.0"
colorlog = "^6.8.0"
colorama = "^0.4.6"
regex = "^2023.12.25"
tiktoken = ">=0.7.0,<1.0.0"
matplotlib = { version = "^3.8.3", optional = true}
requests-mock = "^1.12.1"
semantic-router = ">=0.1.0.dev2"
[tool.poetry.extras]
stats = ["matplotlib"]
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.0"
ruff = "^0.1.5"
pytest = "^7.4.3"
pytest-mock = "^3.12.0"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.5.0"
pytest-asyncio = "^0.23.7"
mypy = "^1.7.1"
types-pyyaml = "^6.0.12.12"
types-requests = "^2.31.0"
black = {extras = ["jupyter"], version = ">=23.12.1,<24.5.0"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.per-file-ignores]
"*.ipynb" = ["ALL"]
[tool.ruff]
line-length = 88
[tool.mypy]
ignore_missing_imports = true