-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 956 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
37
38
from octopus.copyright import *
from setuptools import setup, find_packages
with open("README.rst", "r") as readme_file:
readme = readme_file.read()
from setuptools import setup
setup(name='octopus',
version=version,
description=description,
long_description=readme,
url='https://github.com/UBC-NLP/octopus',
author=author,
author_email=email,
license=license,
packages=find_packages(),
install_requires=[
'regex',
'torch',
'protobuf',
'sentencepiece',
'transformers',
'psutil',
'pandas',
'tqdm',
'sacrebleu',
'accelerate',
'datasets'
],
entry_points={
"console_scripts": [
"octopus = octopus_cli.generate:generate_cli",
"octopus_interactive = octopus_cli.interactive:interactive_cli",
],
},
)