-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
29 lines (27 loc) · 887 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
27
28
29
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='diffcse',
version='0.1.0',
description='A sentence embedding tool based on DiffCSE',
long_description=long_description,
long_description_content_type='text/markdown',
author='Yung-Sung Chuang et al.',
url='https://github.com/voidism/DiffCSE',
download_url='https://github.com/voidism/DiffCSE/archive/refs/tags/v0.1.0.tar.gz',
license='MIT',
packages=find_packages(),
install_requires=[
"scipy==1.5.4",
"datasets==1.2.1",
"pandas==1.1.5",
"scikit-learn==0.24.0",
"prettytable==2.1.0",
"gradio",
"torch==1.7.1",
"setuptools==49.3.0",
]
)