-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
33 lines (32 loc) · 992 Bytes
/
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
setup(
name="coir-eval",
version="0.7.0",
author="xiangyang Li",
author_email="[email protected]",
description="A package for COIR evaluations",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/yourusername/coir",
packages=find_packages(exclude=['tests*']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
install_requires=[
"datasets>=2.19.0",
"numpy>=1.0.0",
"requests>=2.26.0",
"scikit_learn>=1.0.2",
"scipy>=0.0.0",
"sentence_transformers>=3.0.0",
"torch>1.0.0",
"tqdm>1.0.0",
"rich>=0.0.0",
"faiss_cpu",
"pytrec-eval-terrier>=0.5.6",
"voyageai"
],
)