Spaces:
Sleeping
Sleeping
Update setup.py
Browse files
setup.py
CHANGED
|
@@ -1,18 +1,17 @@
|
|
| 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 |
-
|
| 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',
|
|
@@ -23,7 +22,9 @@ setup(
|
|
| 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 |
)
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
|
| 3 |
setup(
|
| 4 |
name='py-hanspell',
|
| 5 |
version='1.1',
|
| 6 |
+
author='SuHun Han',
|
| 7 |
+
author_email='ssut@ssut.me',
|
| 8 |
description='Python wrapper for NHN Hanspell spell checker',
|
| 9 |
long_description=open('README.md').read(),
|
| 10 |
long_description_content_type='text/markdown',
|
| 11 |
url='https://github.com/ssut/py-hanspell',
|
| 12 |
+
packages=find_packages(),
|
|
|
|
|
|
|
|
|
|
| 13 |
install_requires=[
|
| 14 |
+
'requests' # 의존성 직접 명시
|
| 15 |
],
|
| 16 |
classifiers=[
|
| 17 |
'Development Status :: 4 - Beta',
|
|
|
|
| 22 |
'Programming Language :: Python :: 3.7',
|
| 23 |
'Programming Language :: Python :: 3.8',
|
| 24 |
'Programming Language :: Python :: 3.9',
|
| 25 |
+
'Programming Language :: Python :: 3.10',
|
| 26 |
+
'Topic :: Software Development :: Libraries :: Python Modules',
|
| 27 |
+
'Topic :: Text Processing :: Linguistic'
|
| 28 |
],
|
| 29 |
python_requires='>=3.6',
|
| 30 |
)
|