forked from lovit/soynlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (45 loc) · 1.31 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
import soynlp
import setuptools
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="soynlp",
version=soynlp.__version__,
author=soynlp.__author__,
author_email='[email protected]',
description="Unsupervised Korean Natural Language Processing Toolkits",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/lovit/soynlp',
packages=setuptools.find_packages(),
package_data={
'soynlp':[
'trained_models/*',
'pos/dictionary/*.txt',
'pos/dictionary/*/*.txt',
'postagger/dictionary/default/*/*.txt',
'noun/*.txt',
'lemmatizer/dictionary/default/*/*.txt'
]
},
keywords = [
'korean-nlp',
'korean-text-processing',
'nlp',
'tokenizer',
'postagging',
'word-extraction'
],
install_requires=[
"numpy>=1.12.1",
"psutil>=5.0.1",
"scipy>=1.1.0",
"scikit-learn>=0.20.0",
],
classifiers=(
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
),
)