-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
34 lines (32 loc) · 904 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
31
32
33
34
from setuptools import setup
__version__ = '0.2.5'
setup(
name='BLEU',
version=__version__,
description='implementation of BLEU metrics for machine translation',
url='https://github.com/neural-dialogue-metrics/BLEU.git',
author='Cong Feng',
author_email='cgsdfc@126.com',
keywords=[
'NL', 'CL', 'MT',
'natural language processing',
'computational linguistics',
'machine translation',
],
packages=[
'bleu',
'bleu.tests',
],
package_data={
'bleu.tests': ['data/*'],
},
scripts=['bin/bleu_metric.py'],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache-v2',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
license='LICENCE.txt',
long_description=open('README.md').read(),
)