-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
30 lines (25 loc) · 845 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Evaluation machine translation"
version = "0.4.2"
description = "common methods used to evaluate machine translation,"
readme = "README.md"
authors = [{ name = "Alireza Parvaresh", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["nlp", "machine translation" , "bleu", "nist", "glue" ,"chrf", "wer" , "ter" , "meteor"]
dependencies = []
requires-python = ">=3.5"
[project.optional-dependencies]
dev = []
[project.urls]
Homepage = "https://github.com/parvvaresh/"
[tool.setuptools]
py-modules = ['Evaluation machine translation']