forked from phatpiglet/autocorrect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
18 lines (17 loc) · 803 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup
setup(name='autocorrect',
version='0.3.0',
packages=['autocorrect'],
package_data={'autocorrect': ['words.bz2']},
description='Python 3 Spelling Corrector',
author='Jonas McCallum',
author_email='[email protected]',
url='https://github.com/phatpiglet/autocorrect/',
license='http://www.opensource.org/licenses/mit-license.php',
classifiers=('Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',),
keywords='autocorrect spelling corrector')