Spaces:
Sleeping
Sleeping
Create setup.py
Browse files
setup.py
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup
|
| 2 |
+
|
| 3 |
+
setup(
|
| 4 |
+
name='py-hanspell',
|
| 5 |
+
version='1.1',
|
| 6 |
+
description='Python wrapper for NHN Hanspell spell checker',
|
| 7 |
+
long_description=open('README.md').read(),
|
| 8 |
+
long_description_content_type='text/markdown',
|
| 9 |
+
url='https://github.com/ssut/py-hanspell',
|
| 10 |
+
author='SuHun Han',
|
| 11 |
+
author_email='ssut@ssut.me',
|
| 12 |
+
license='MIT',
|
| 13 |
+
packages=['py_hanspell'],
|
| 14 |
+
install_requires=[
|
| 15 |
+
'requests'
|
| 16 |
+
],
|
| 17 |
+
classifiers=[
|
| 18 |
+
'Development Status :: 4 - Beta',
|
| 19 |
+
'Intended Audience :: Developers',
|
| 20 |
+
'License :: OSI Approved :: MIT License',
|
| 21 |
+
'Programming Language :: Python :: 3',
|
| 22 |
+
'Programming Language :: Python :: 3.6',
|
| 23 |
+
'Programming Language :: Python :: 3.7',
|
| 24 |
+
'Programming Language :: Python :: 3.8',
|
| 25 |
+
'Programming Language :: Python :: 3.9',
|
| 26 |
+
'Programming Language :: Python :: 3.10'
|
| 27 |
+
],
|
| 28 |
+
python_requires='>=3.6',
|
| 29 |
+
)
|