-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (33 loc) · 1.22 KB
/
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
34
35
36
37
from setuptools import setup, find_packages
with open("README.md", mode="r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name="triple-encoders",
version="0.0.1",
author="Justus-Jonas Erker",
author_email="justus-jonas.erker@tu-darmstadt.de",
download_url="https://github.com/UKPLab/arxiv2024-triple-encoders",
description="Distributed Sentence Transformer Representations with Triple Encoders ",
long_description=readme,
long_description_content_type="text/markdown",
license="Apache License 2.0",
packages=find_packages(),
python_requires=">=3.8.0",
install_requires=[
'datasets==2.17.0',
'transformers==4.34.1',
'sentence-transformers==2.2.2',
'torch==2.0.1',
'numpy==1.21.5',
'pandas==1.4.4',
'tqdm==4.64.1'
],
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
],
keywords="PyTorch NLP deep learning Sentence Transformer Triple Encoders Dialog Systems",
)