-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1012 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
30
31
32
33
34
35
36
from setuptools import find_packages, setup
setup(
name='t_ragx',
package_dir={"": "src"},
packages=find_packages("src"),
version='0.1.2',
url="https://github.com/rayliuca/T-Ragx",
description='Enhancing translation with RAG-powered large language models',
long_description=open('README.md', encoding="utf8").read(),
long_description_content_type='text/markdown',
author='Ray Liu',
email='[email protected]',
license='MIT',
project_urls={
"Bug Reports": "https://github.com/rayliuca/T-Ragx/issues",
"Source": "https://github.com/rayliuca/T-Ragx",
},
install_requires=[
'transformers>=4.38',
'elasticsearch',
'OpenCC',
'levenshtein',
'unbabel-comet>=2.2.1',
],
keywords=[
'machine-translation',
'computer-aided-translation',
'computer-assisted-translation',
'rag',
'retrieval-augmented-generation',
'large-language-models',
'llm',
]
)