forked from ramsrigouthamg/Questgen.ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 961 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
from distutils.core import setup
setup(name='Questgen',
version='1.0.0',
description='Question generator from any text',
author='Questgen contributors',
author_email='[email protected]',
packages=['Questgen', 'Questgen.encoding', 'Questgen.mcq'],
url="https://github.com/ramsrigouthamg/Questgen.ai",
install_requires=[
'torch==1.10.0',
'transformers==3.0.2',
'sense2vec==2.0.0',
'strsim==0.0.3',
'six==1.15.0',
'networkx==2.6.3',
'numpy==1.21.5',
'scipy==1.4.1',
'scikit-learn==1.0.2',
'unidecode==1.3.4',
'future==0.16.0',
'joblib==1.1.0',
'pytz==2018.9',
'python-dateutil==2.8.2',
'flashtext==2.7',
'pandas==1.3.5'
],
package_data={'Questgen': ['questgen.py', 'mcq.py', 'train_gpu.py', 'encoding.py']}
)