-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 798 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 798 Bytes
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
from setuptools import setup, find_packages
with open("README.md", mode="r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name='Nexus',
version='0.0.1',
description='Toolkit for Universal Retrieval, such as text retreival, item recommendation, image retrieval, etc.',
long_description=readme,
long_description_content_type="text/markdown",
author_email='liandefu@ustc.edu.cn',
url='https://github.com/USTCLLM/Nexus',
packages=find_packages(),
include_package_data=True,
install_requires=[
'torch>=1.6.0',
'transformers==4.44.2',
'datasets==2.19.0',
'accelerate>=0.20.1',
'sentence_transformers',
'peft',
'ir-datasets',
'sentencepiece',
'protobuf'
],
)