-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 911 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
39
from setuptools import setup
setup(
name='summarization',
version='0.2',
description='',
url='',
packages=['summarization'],
license='',
author='Dorina Lakatos, Botond Barta',
python_requires='',
install_requires=[
'setuptools~=68.0.0',
'datasets~=2.5.1',
'dateparser~=1.1.1',
'dotmap~=1.3.30',
'evaluate~=0.3.0',
'typing~=3.7.4.3',
'numpy~=1.23.2',
'click~=8.0.4',
'transformers~=4.22.2',
'tqdm~=4.64.0',
'tldextract~=3.3.1',
'beautifulsoup4~=4.11.1',
'pandas~=2.0.3',
'pandarallel==1.6.4',
'protobuf==3.19.6',
'pypandoc~=1.8.1',
'PyYAML~=6.0',
'url_parser~=3.0.3',
'warc-knot>=0.2.5',
'quntoken~=3.1.8',
'Cython',
'fasttext',
'nltk',
'sentencepiece',
'bert_score'
]
)