sunispell / setup.py
soojeongcrystal's picture
Update setup.py
4e8aa7a verified
from setuptools import setup, find_packages
setup(
name='py-hanspell',
version='1.1',
packages=find_packages(),
install_requires=[
'requests'
],
description='Python wrapper for NHN Hanspell spell checker',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='SuHun Han',
author_email='ssut@ssut.me',
url='https://github.com/ssut/py-hanspell',
classifiers=[
'Programming Language :: Python :: 3'
]
)