-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
33 lines (28 loc) · 1.18 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
33
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as f:
long_description = f.read()
with open("requirements.txt", "r", encoding='utf-8') as f:
requirements = f.read().strip().split("\n")
setup(
name="easse",
version="0.2.4",
description="Easier Automatic Sentence Simplification Evaluation",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.6",
"Topic :: Text Processing :: Linguistic",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
author="Fernando Alva-Manchego <feralvam@gmail.com>, Louis Martin <louismartincs@gmail.com>",
url="https://github.com/feralvam/easse",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
test_suite="tests",
entry_points={"console_scripts": ["easse = easse.cli:cli"]},
install_requires=requirements,
)