-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
25 lines (24 loc) · 846 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
from setuptools import setup, find_packages
setup(
name='disentangled_retriever',
version='0.0.2',
packages=find_packages("src"),
package_dir={'': 'src'},
description='Disentangled Modeling of Domain and Relevance for Adaptable Dense Retrieval',
url='https://github.com/jingtaozhan/disentangled-retriever',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
author='Jingtao Zhan',
author_email='[email protected]',
install_requires=[
"pytrec-eval",
"ujson",
"adapter-transformers",
# 'torch >= 1.10.1', # install manually
# 'faiss-gpu == 1.7.2', # install manually
],
)