-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (49 loc) · 1.31 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
from setuptools import find_packages, setup
setup(
name="irtools",
version="1.13.0",
description="Utilities for IR research",
author="Binsheng Liu",
author_email="[email protected]",
scripts=[
"scripts/each_server.sh",
"irtools/perplexity.py",
"irtools/mypyrouge.py",
"irtools/indri.py",
"scripts/trec_eval.py",
"scripts/cleanit.py",
"scripts/tokit.py",
"scripts/spacit.py",
"scripts/binarize.py",
"scripts/sample.py",
"scripts/eval_run.py",
"scripts/trec2ans.py",
"scripts/ans2trec.py",
"scripts/label.py",
"scripts/pair2list.py",
"scripts/filter.py",
"scripts/ttest_eval.py",
"scripts/groupby.py",
"scripts/euclidean_models.py",
"scripts/lemmatize.py",
"scripts/groupbys.py",
"scripts/spacify.py",
"scripts/subword_tf_idf.py",
"scripts/binarize_columns.py",
"scripts/trecweb2tsv.py",
"scripts/cv_eval.py",
],
packages=find_packages(exclude=["docs", "tests", "scripts"]),
include_package_data=True,
install_requires=[
"unidecode",
"tqdm",
"scipy",
"numpy",
"more-itertools",
"pandas",
"ftfy",
"lxml",
"GPUtil",
],
)