-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1.09 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
setup(
name="sprint-toolkit",
version="0.0.3",
author="Nandan Thakur",
author_email="[email protected]",
description="SPRINT: A Unified Toolkit for Evaluating and Demystifying Zero-shot Neural Sparse Retrieval",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/thakur-nandan/sprint",
project_urls={
"Bug Tracker": "https://github.com/thakur-nandan/sprint/issues",
},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
],
python_requires=">=3.7",
install_requires=[
"beir",
"pyserini"
],
keywords="Information Retrieval Toolkit Sparse Retrievers Networks BERT PyTorch IR NLP deep learning"
)