| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import setuptools |
|
|
| with open("README.md", "r") as fh: |
| long_description = fh.read() |
|
|
| setuptools.setup( |
| name="rouge_score", |
| version="0.0.4", |
| author="Google LLC", |
| author_email="no-reply@google.com", |
| description="Pure python implementation of ROUGE-1.5.5.", |
| long_description=long_description, |
| long_description_content_type="text/markdown", |
| url="https://github.com/google-research/google-research/tree/master/rouge", |
| packages=["rouge_score"], |
| package_dir={"rouge_score": ""}, |
| classifiers=[ |
| "Programming Language :: Python :: 3", |
| "License :: OSI Approved :: Apache Software License", |
| "Operating System :: OS Independent", |
| ], |
| install_requires=[ |
| "absl-py", |
| "nltk", |
| "numpy", |
| "six>=1.14.0", |
| ], |
| python_requires=">=2.7", |
| ) |
|
|