-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (37 loc) · 1.48 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
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst', extra_args=['--wrap=none'])
except(IOError, ImportError):
long_description = open('README.md', encoding='UTF-8').read()
setup(
name='koalanlp',
version='2.1.8-SNAPSHOT',
description='Python wrapper for KoalaNLP',
long_description=long_description,
author='koalanlp',
url='https://koalanlp.github.io/python-support',
install_requires=["py4j~=0.10", "requests~=2.22", "kss~=2.5.1"],
packages=find_packages(exclude=["docs", "tests", "doc_source", "scripts"]),
keywords=['korean', 'natural language processing', 'koalanlp', '한국어 처리', '한국어 분석',
'형태소', '의존구문', '구문구조', '개체명', '의미역'],
python_requires='>=3.5',
package_data={},
zip_safe=False,
license="MIT",
project_urls={
"Issue Tracker": "https://github.com/koalanlp/python-support/issues",
"Source Code": "https://github.com/koalanlp/python-support",
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Natural Language :: Korean',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Linguistic'
]
)