-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
986acb5
commit c925a60
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 = "more.amani@yahoo.com" }] | ||
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'] |