-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (50 loc) · 1.33 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
[project]
name = "dtpu"
description = "Utilities for text processing tasks with Deep NLP"
version = "0.6.0"
authors = [
{ name = "Sebastian Walter", email = "[email protected]" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
keywords = ["nlp", "utilities", "text", "processing"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing",
"Topic :: Utilities"
]
dependencies = [
"torch>=2.3",
"einops>=0.8",
"numpy>=1.26",
"pyyaml>=6.0",
"tqdm>=4.66",
"tensorboard>=2.16.0",
"flask>=3.0",
"requests>=2.31",
"termcolor>=2.4.0",
"grammar-utils>=0.1.0"
]
[project.scripts]
"tu.create_continuation_index" = "text_utils.cli.create_continuation_index:main"
"tu.create_dictionary" = "text_utils.cli.create_dictionary:main"
"tu.train_bpe" = "text_utils.cli.train_bpe:main"
[project.optional-dependencies]
test = [
"pytest>=8.0"
]
low-precision = [
"bitsandbytes>=0.42",
]
[project.urls]
Github = "https://github.com/ad-freiburg/text-utils"
[build-system]
requires = ["maturin>=1"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
module-name = "text_utils._internal"