-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
26 lines (24 loc) · 796 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
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='JPQ',
version='0.1.0',
description='Jointly Optimizing Query Encoder and Product Quantization to Improve Retrieval Performance',
url='https://github.com/jingtaozhan/JPQ',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
packages=['jpq'],
long_description=readme,
install_requires=[
'torch >= 1.9.0',
'transformers >= 4.3.3',
#'faiss-gpu == 1.7.1',#faiss should be installed manually
'tensorboard >= 2.5.0',
'boto3'
],
)