-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 1.02 KB
/
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
from io import open
from setuptools import find_packages, setup
setup(
name="dialogentail",
version="0.1.0",
author="Nouha Dziri, Ehsan Kamalloo",
author_email="[email protected]",
description="Framework for automatic evaluation of dialogue consistency using entailment",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords='dialogue evaluation semantic similarity entailment NLP deep learning',
url="https://github.com/nouhadziri/DialogEntailment",
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
install_requires=['allennlp>=0.8.3',
'pytorch-pretrained-bert',
'spacy~=2.1.0',
'scikit-learn',
'pandas',
'seaborn',
'smart_open',
'tqdm'],
python_requires='>=3.6.0',
tests_require=['pytest'],
)