-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 813 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from setuptools import find_packages
setup(name='alana_learning_to_rank',
version='1.0.0',
description='Neural ranker for Alana, Heriot-Watt University\'s Alexa Prize Socialbot',
author='Igor Shalyminov',
author_email='ishalyminov@gmail.com',
url='https://github.com/WattSocialBot/alana_learning_to_rank',
download_url='https://github.com/WattSocialBot/alana_learning_to_rank.git',
license='MIT',
install_requires=['nltk==3.3',
'pandas==0.23.0',
'scikit-learn==0.19.1',
'tensorflow-gpu==1.8.0',
'configobj==5.0.6',
'ner==0.1'],
packages=find_packages(),
package_data={'alana_learning_to_rank': ['*']})