-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (23 loc) · 735 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (23 loc) · 735 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
[tool.poetry]
name = "semantic-split"
version = "0.1.0"
description = "A better way to split (chunk/group) your text before inserting them into an LLM/Vector DB."
authors = ["Agam More <agam@agam.me>"]
license = "MIT"
readme = "README.md"
packages = [{include = "semantic_split"}]
[[tool.poetry.source]]
name = "semantic-split"
url = "https://github.com/agamm/semantic-split"
[tool.poetry.dependencies]
python = "*"
sentence-transformers = "^2.2.2"
spacy = "^3.5.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
[tool.pytest.ini_options]
# tests/utls.py is imported as `from utls import ...` by tests in subdirs.
pythonpath = ["tests"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"