-
Notifications
You must be signed in to change notification settings - Fork 224
/
setup.py
executable file
·31 lines (25 loc) · 1.1 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
28
29
30
31
#!/usr/bin/env python
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
import sys
from setuptools import find_packages
from setuptools import setup
from setuptools.command.develop import develop
from setuptools.command.install import install
if __name__ == '__main__':
requirements_path = 'requirements.txt'
if sys.version_info[0] < 3:
requirements_path = 'requirements_py2.txt'
with open(requirements_path) as f:
install_reqs = f.read().splitlines()
setup(name='nlg-eval',
version='2.4.1',
description="Wrapper for multiple NLG evaluation methods and metrics.",
author='Shikhar Sharma, Hannes Schulz, Justin Harris',
url='https://github.com/Maluuba/nlg-eval',
packages=find_packages(),
include_package_data=True,
scripts=['bin/nlg-eval'],
install_requires=install_reqs,
)