-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
49 lines (47 loc) · 1.24 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ranx",
version="0.3.20",
author="Elias Bassani",
author_email="elias.bssn@gmail.com",
description="ranx: A Blazing-Fast Python Library for Ranking Evaluation, Comparison, and Fusion",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AmenRa/ranx",
packages=setuptools.find_packages(),
install_requires=[
"numpy",
"numba>=0.54.1",
"pandas",
"tabulate",
"tqdm",
"scipy>=1.8.0",
"ir_datasets",
"rich",
"orjson",
"lz4",
"cbor2",
"seaborn",
"fastparquet",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Text Processing :: General",
],
keywords=[
"trec_eval",
"information retrieval",
"recommender systems",
"evaluation",
"ranking",
"fusion",
"metasearch",
"numba",
],
python_requires=">=3.8",
)