-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
24 lines (23 loc) · 880 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
from setuptools import setup, find_packages
setup(
name='repconc',
version='0.2.1',
packages=find_packages("src"),
package_dir={'': 'src'},
description='Learning Discrete Representations via Constrained Clustering for Effective and Efficient Dense Retrieval',
url='https://github.com/jingtaozhan/RepCONC',
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='jingtaozhan@gmail.com',
install_requires=[
# 'torch >= 1.10.1', # install manually
'transformers >= 4.19.2',
#'faiss-gpu == 1.7.1', # install manually
'GradCache@git+https://github.com/luyug/GradCache#egg=GradCache'
],
)