-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
105 lines (88 loc) · 2.98 KB
/
setup.py
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import io
import os
import platform
import re
from typing import List
import setuptools
def get_long_description():
base_dir = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(base_dir, "README.md"), encoding="utf-8") as f:
return f.read()
def get_requirements():
with open("requirements.txt") as f:
return f.read().splitlines()
def get_version():
current_dir = os.path.abspath(os.path.dirname(__file__))
version_file = os.path.join(current_dir, "jury", "__init__.py")
with io.open(version_file, encoding="utf-8") as f:
return re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]', f.read(), re.M).group(1)
def add_pywin(reqs: List[str]) -> None:
if platform.system() == "Windows":
# Latest PyWin32 build (301) fails, required for sacrebleu
ext_package = ["pywin32==302"]
else:
ext_package = []
reqs.extend(ext_package)
_DEV_REQUIREMENTS = [
"black==21.7b0",
"deepdiff==5.5.0",
"flake8==3.9.2",
"isort==5.9.2",
"pytest>=7.0.1",
"pytest-cov>=3.0.0",
"pytest-timeout>=2.1.0",
]
_PRISM_REQUIREMENTS = ["fairseq==0.9.0", "numpy>=1.23,<1.24"]
_METRIC_REQUIREMENTS = [
"sacrebleu>=2.0.0",
"bert_score==0.3.11",
"jiwer>=2.3.0",
"seqeval==1.2.2",
"sentencepiece>=0.1.99,<0.2",
"unbabel-comet==2.0.1",
"protobuf>=3.20.3,<3.21",
]
_METRIC_REQUIREMENTS.extend(_PRISM_REQUIREMENTS)
# add_pywin(_METRIC_REQUIREMENTS)
extras = {
"prism": _PRISM_REQUIREMENTS,
"metrics": _METRIC_REQUIREMENTS,
"dev": _DEV_REQUIREMENTS + _METRIC_REQUIREMENTS,
}
setuptools.setup(
name="jury",
version=get_version(),
author="",
license="MIT",
description="Evaluation toolkit for neural language generation.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/obss/jury",
packages=setuptools.find_packages(exclude=["tests"]),
python_requires=">=3.8",
install_requires=get_requirements(),
extras_require=extras,
include_package_data=True,
entry_points={
"console_scripts": [
"jury=jury.cli:app",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="machine-learning, deep-learning, ml, pytorch, NLP, evaluation, question-answering, question-generation",
)