-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.19 KB
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
# ---- All project specifications ---- #
[project]
name = "source_resegmenter"
description = "Library to re-segment source sentences to match the segmentation of a reference"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{ name = "Mauro Cettolo", email = "[email protected]" },
{ name = "Marco Gaido", email = "[email protected]" },
{ name = "FBK HLT-MT", email = "[email protected]" },
]
keywords = ["segmenter"]
dependencies = [
"mweralign",
"torch",
"simalign",
"sacremoses",
"sentence_transformers",
]
dynamic = ["version"]
[project.urls]
GitHub = "https://github.com/hlt-mt/source-resegmenter"
Issues = "https://github.com/hlt-mt/source-resegmenter/issues"
[project.scripts]
# Server
source_resegmenter = "source_resegmenter.resegment:cli_main"
[project.optional-dependencies]
dev = [
"pytest==7.4.0",
"flake8",
"sphinx",
"sphinx-rtd-theme",
"build",
"twine",
]
[tool.setuptools.dynamic]
version = {attr = "source_resegmenter.__version__"}
# ---- Explicit project build information ---- #
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = [""]