-
Notifications
You must be signed in to change notification settings - Fork 192
/
setup.py
39 lines (36 loc) · 1.27 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
from setuptools import setup, find_packages
with open("README.md", mode="r", encoding="utf-8") as readme_file:
readme = readme_file.read()
optional_packages = {
"tf" : ['tensorflow>=2.2.0', 'tensorflow-text', 'tensorflow-hub']
}
setup(
name="beir",
version="2.0.0",
author="Nandan Thakur",
author_email="[email protected]",
description="A Heterogeneous Benchmark for Information Retrieval",
long_description=readme,
long_description_content_type="text/markdown",
license="Apache License 2.0",
url="https://github.com/beir-cellar/beir",
download_url="https://github.com/beir-cellar/beir/archive/v2.0.0.zip",
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'sentence-transformers',
'pytrec_eval',
'faiss_cpu',
'elasticsearch==7.9.1',
'datasets'
],
extras_require = optional_packages,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
keywords="Information Retrieval Transformer Networks BERT PyTorch IR NLP deep learning"
)