Spaces:
Runtime error
Runtime error
File size: 870 Bytes
0f14897 |
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 |
from setuptools import setup
__version__ = '0.4.0'
setup(
name='Distinct_N',
version=__version__,
description='Distinct-N metric that measures degree of diversity of generated response',
url='https://github.com/neural-dialogue-metrics/Distinct-N.git',
author='cgsdfc',
author_email='cgsdfc@126.com',
keywords=[
'NL', 'CL', 'MT',
'natural language processing',
'computational linguistics',
'machine translation',
],
packages=['distinct_n'],
scripts=['bin/distinct_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(),
install_requires=[],
)
|