-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
32 lines (31 loc) · 1.21 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
32
from setuptools import setup
setup(
name='pythonrouge',
version='0.2',
description='python wrapper for ROUGE evaluation',
url='http://github.com/tagucci/pythonrouge',
author='tagucci',
author_email='[email protected]',
keywords=['NL', 'CL', 'natural language processing',
'computational linguistics', 'summarization'],
packages=['pythonrouge'],
package_data={
'pythonrouge': ['RELEASE-1.5.5/*.*',
'RELEASE-1.5.5/XML/*.*',
'RELEASE-1.5.5/XML/DOM/*.*',
'RELEASE-1.5.5/XML/Handler/*.*',
'RELEASE-1.5.5/data/WordNet-2.0.exc.db',
'RELEASE-1.5.5/data/smart_common_words.txt',
'RELEASE-1.5.5/data/WordNet-1.6-Exceptions/*.*',
'RELEASE-1.5.5/data/WordNet-2.0-Exceptions/*.*',
],
},
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic'
],
license='LICENCE.txt',
long_description=open('README.md').read(),
)