-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 802 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "word-piece-tokenizer"
version = "1.0.1"
description = "A Lightweight Word Piece Tokenizer"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["word", "piece", "tokenizer", "transformer", "bert", "uncased", "nlp", "natural", "language", "processing"]
authors = [{ name = "Jing Hua", email = "mail@dev.tjh.sg"}]
classifiers = [
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
license = { text = "CC0 1.0 Universal" }
dependencies = []
[project.optional-dependencies]
test = ["transformers"]
[project.urls]
Repository = "https://github.com/ztjhz/word-piece-tokenizer"