-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 751 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 751 Bytes
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
import setuptools
# version.py defines the VERSION variable.
# We use exec here so we don't import qaeval whilst setting up.
VERSION = {}
with open('qaeval/version.py', 'r') as version_file:
exec(version_file.read(), VERSION)
setuptools.setup(
name='qaeval',
version=VERSION['VERSION'],
author='Daniel Deutsch',
description='A package for evaluating the content of summaries through question-answering',
url='https://github.com/danieldeutsch/qaeval',
packages=setuptools.find_packages(),
python_requires='>=3.6',
install_requires=[
'allennlp==1.1.0',
'click==7.1.2',
'edlib',
'spacy==2.2.4',
'torch==1.6.0',
'transformers==3.0.2',
'urllib3>=1.25.10'
]
)