-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 957 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import setuptools
setuptools.setup(
name="symspellpy_ko",
version="0.1.4",
license='GNU General Public License v3 (GPLv3)',
author="Heegyu Kim",
author_email="heekue83@gmail.com",
description="symspellpy를 한글 특성에 맞춰서 수정한 라이브러리. 자소분해를 이용해 더 정확한 오타교정을 해준다.",
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url="https://github.com/HeegyuKim/symspellpy-ko",
packages=setuptools.find_packages(exclude=['tests']),
install_requires=open("requirements.txt").readlines(),
include_package_data=True,
package_data = {
'': ["*.txt"]
},
classifiers=[
# 패키지에 대한 태그
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
],
)