Skip to content

Commit

Permalink
Create pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
parvvaresh authored Feb 4, 2024
1 parent 986acb5 commit c925a60
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pyproject.toml
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']

0 comments on commit c925a60

Please sign in to comment.