forked from chonkie-ai/chonkie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.89 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
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chonkie"
version = "0.2.1.post1"
description = "🦛 CHONK your texts with Chonkie ✨ - The no-nonsense RAG chunking library"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["chunking", "rag", "nlp", "text-processing"]
authors = [
{name = "Bhavnick Minhas", email = "[email protected]"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing :: Linguistic"
]
dependencies = [
"autotiktokenizer>=0.2.0"
]
[project.urls]
Homepage = "https://github.com/bhavnicksm/chonkie"
[project.optional-dependencies]
model2vec = ["model2vec>=0.1.0", "numpy>=1.23.0"]
st = ["sentence-transformers>=2.3.0", "numpy>=1.23.0"]
openai = ["openai>=1.0.0", "numpy>=1.23.0"]
semantic = ["model2vec>=0.1.0", "numpy>=1.23.0"]
all = ["sentence-transformers>=2.3.0", "numpy>=1.23.0", "openai>=1.0.0", "model2vec>=0.1.0"]
dev = ["pytest>=6.2.0",
"datasets>=1.14.0",
"transformers>=4.0.0",
"black>=21.12b0",
"isort>=5.10.2",
"flake8>=4.0.0",
"mypy>=0.910",
"pylint>=2.11.1",
"pre-commit>=2.15.0"]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["chonkie",
"chonkie.chunker",
"chonkie.embeddings"]