-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
58 lines (55 loc) · 1.88 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "semchunk"
version = "3.0.1"
authors = [
{name="Umar Butler", email="umar@umar.au"},
]
description = "A fast, lightweight and easy-to-use Python library for splitting text into semantically meaningful chunks."
readme = "README.md"
requires-python = ">=3.9"
license = {text="MIT"}
keywords = [
"chunking",
"splitting",
"text",
"split",
"splits",
"chunks",
"chunk",
"splitter",
"chunker",
"nlp",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
"Typing :: Typed"
]
dependencies = [
"tqdm",
"mpire[dill]",
]
[project.urls]
Homepage = "https://github.com/umarbutler/semchunk"
Documentation = "https://github.com/umarbutler/semchunk/blob/main/README.md"
Issues = "https://github.com/umarbutler/semchunk/issues"
Source = "https://github.com/umarbutler/semchunk"
[tool.hatch.build.targets.sdist]
only-include = ['src/semchunk/__init__.py', 'src/semchunk/py.typed', 'src/semchunk/semchunk.py', 'pyproject.toml', 'README.md', 'LICENCE', 'CHANGELOG.md', 'tests/bench.py', 'tests/test_semchunk.py', '.github/workflows/ci.yml', 'tests/helpers.py']