-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
38 lines (32 loc) · 900 Bytes
/
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
[build-system]
requires = [
"setuptools>=65",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["tokenization_scorer"]
[project]
name = "tokenization-scorer"
version = "1.1.8"
description = "Package for evaluating text tokenizations."
license = {text = "MIT License"}
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Vilém Zouhar", email = "vilem.zouhar@gmail.com"},
]
keywords = ["tokenization", "evaluation", "natural language processing"]
dependencies = [
"tqdm>=4.0",
"numpy>=2.0",
]
[project.urls]
Repository = "https://github.com/zouharvi/tokenization-scorer"
Issues = "https://github.com/zouharvi/tokenization-scorer/issues"
[project.scripts]
tokenization-scorer = "tokenization_scorer:entry"
tokenization_scorer = "tokenization_scorer:entry"
# python3 -m build
# twine check dist/*
# twine upload dist/* -u __token__