forked from ConvLab/ConvLab-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·84 lines (83 loc) · 2.12 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
'''
setup.py for ConvLab-3
'''
from setuptools import setup, find_packages
setup(
name='convlab',
version='3.0.2b',
packages=find_packages(),
license='Apache',
description='An Open-source Dialog System Toolkit',
long_description=open('README.md', encoding='UTF-8').read(),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
setup_requires=['setuptools-git'],
install_requires=[
'joblib>=1.2.0',
'pillow>=9.3.0',
'protobuf>=3.20.2',
'oauthlib>=3.2.1',
'accelerate',
'rouge-score',
'sacrebleu',
'tensorboardX',
'boto3',
'matplotlib',
'seaborn',
'tabulate',
'python-Levenshtein',
'requests',
'numpy',
'nltk',
'scipy',
'tensorboard',
'torch>=1.10.1,<=1.13',
'transformers>=4.17.0,<=4.24.0',
'sentence-transformers>=2.2.2',
'datasets>=2.0',
'seqeval',
'spacy',
'simplejson',
'unidecode',
'jieba',
'embeddings',
'visdom',
'quadprog',
'fuzzywuzzy',
'json_lines',
'gtts',
'pydub',
'openai',
'litellm==0.1.516',
'GitPython'
],
extras_require={
'develop': [
"python-coveralls",
"pytest-dependency",
"pytest-mock",
"requests-mock",
"pytest",
"pytest-cov",
"checksumdir",
"bs4",
"lxml",
]
},
cmdclass={},
entry_points={},
include_package_data=True,
url='https://github.com/ConvLab/ConvLab-3',
author='convlab',
author_email='[email protected]',
python_requires='>=3.8',
zip_safe=False
)