-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
30 lines (27 loc) · 1.05 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
#!/user/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='py-readability-metrics',
version='1.4.4',
author='Carmine DiMAscio',
author_email='cdimascio@gmail.com',
description='Score text "Readability" with popular formulas and metrics including Flesch-Kincaid, Gunning Fog, ARI, Dale Chall, SMOG, Spache and more',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/cdimascio/py-readability-metrics',
keywords="readability metrics text difficulty grade level",
packages=find_packages(exclude=['tests']),
package_data={'readability': ['data', 'data/dale_chall_porterstem.txt', 'data/spache_easy_porterstem.txt']},
include_package_data=True,
license='MIT',
install_requires=[
'nltk'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)