-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
26 lines (23 loc) · 924 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
# Copyright (c) 2018-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
from setuptools import setup, find_packages
setup(
name='tseval',
version='1.0',
description='Reference-less Text Simplification Evaluation Methods',
author='Louis Martin',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy>=1.1.15', 'scipy', 'pandas', 'torch', 'scikit-learn', 'python-Levenshtein', 'gitpython', 'nltk',
# Commented out because of https://github.com/Maluuba/nlg-eval/issues/77
# 'nlg-eval@git+https://github.com/Maluuba/nlg-eval.git',
# Commented out because out of date
# 'fairseq@git+https://github.com/pytorch/fairseq@cc292afaedd01bc2641f515190917627b437bde7',
],
)