forked from mmautner/readability
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
26 lines (25 loc) · 831 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
from distutils.core import setup
setup(
name='readability',
version='0.3.1',
description=('Measure the readability of a given text '
'using surface characteristics'),
long_description=open('README.rst').read(),
author='Andreas van Cranenburgh',
author_email='[email protected]',
url='https://github.com/andreasvc/readability/',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Cython',
'Topic :: Text Processing :: Linguistic',
],
packages=['readability',],
scripts=['bin/readability'],
)