-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathsetup.py
32 lines (30 loc) · 964 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
from setuptools import setup, find_packages
version = "2.1.0"
setup(
name="files2rouge",
version=version,
description="Calculating ROUGE score between two files (line-by-line)",
url="http://github.com/pltrdy/files2rouge",
download_url="https://github.com/pltrdy/files2rouge/archive/%s.tar.gz"
% version,
author="pltrdy",
author_email="[email protected]",
keywords=["NL", "CL", "natural language processing",
"computational linguistics", "summarization"],
packages=find_packages(),
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Linguistic"
],
license="LICENCE.txt",
long_description=open("README.md").read(),
entry_points={
'console_scripts': [
'files2rouge=files2rouge:main'
]
},
install_requires=[
],
include_package_data=True,
)