Spaces:
Sleeping
Sleeping
File size: 513 Bytes
7de5226 9d9c961 4e8aa7a 9d9c961 4e8aa7a 9d9c961 4e8aa7a 9d9c961 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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'
]
)
|