-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 881 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 881 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "chonky"
version = "0.1.7"
authors = [
{ name="mirth" },
]
description = "Chonky is a Python library that intelligently segments text into meaningful semantic chunks using a fine-tuned transformer model."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research"
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"transformers"
]
keywords = ["NLP", "RAG", "text splitter"]
[project.urls]
Homepage = "https://github.com/mirth/chonky"
Issues = "https://github.com/mirth/chonky/issues"