-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
57 lines (56 loc) · 1.58 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup
setup(
name='hangul-utils',
version="0.4.5",
license="GPL",
description='An integrated library for Korean preprocessing.',
author='Kang Min Yoo',
author_email='[email protected]',
url='https://github.com/kaniblu/hangul-utils',
packages=['hangul_utils'],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: Korean",
"Programming Language :: Java",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic"
],
platforms=[
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
],
keywords=[
"hangul-utils",
"morphological analyzer",
"morphology",
"analyzer",
"korean",
"tokenizer",
"sentence tokenizer",
"word tokenizer",
"pos tagger",
"natural language processing",
"jamo",
"korean character",
],
install_requires=[
"tqdm",
"six",
"jpype1;python_version<='2.7'",
"jpype1-py3;python_version>='3.5'",
"mecab-python==0.996-ko-0.9.2",
"map-async>=1.2.3"
],
dependency_links=[
"git+https://bitbucket.org/eunjeon/"
"mecab-python-0.996#egg=mecab-python-0.996-ko-0.9.2"
],
entry_points={
"console_scripts": [
"hangul-process = hangul_utils.run:main"
]
}
)