-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (77 loc) · 1.72 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = [
"hatchling>=1.8.1",
]
build-backend = "hatchling.build"
[project]
name = "evalem"
dynamic = [
"version",
]
description = "An evaluation framework for your NLP pipelines"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.8"
authors = [
{ email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: General",
]
dependencies = [
"arrow==1.2.3",
"bert-score==0.3.13",
"datasets==2.7.0",
"evaluate==0.2.2",
"jury==2.2.3",
"loguru==0.6.0",
"numpy==1.24.2",
"onnx==1.14.0",
"onnxruntime==1.15.0",
"optimum==1.8.8",
"pandas==1.5.3",
"pyarrow==11.0.0",
"pytest==7.2.1",
"pytest-cov==4.0.0",
"sacrebleu==2.3.1",
"scikit-learn==1.2.1",
"sentencepiece==0.1.99",
"seqeval==1.2.2",
"torch==2.0.1",
"transformers==4.28.1",
]
[project.optional-dependencies]
cv = [
# dependencies for cv module
]
nlp = [
# dependencies for nlp module
]
[project.urls]
Homepage = "https://github.com/NASA-IMPACT/evalem"
[tool.hatch.version]
path = "evalem/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/evalem",
]
[tool.hatch.envs.test]
dependencies = [
"coverage[toml]",
"pytest",
"pytest-cov",
"pytest-mock",
"black==23.3.0",
"flake8==5.0.4",
]
[tool.hatch.envs.test.scripts]
run-coverage = "pytest --cov-config=pyproject.toml --cov=pkg --cov=tests"
run = "run-coverage --no-cov"