-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
32 lines (30 loc) · 1.25 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
import prenlp
import setuptools
with open('README.md', encoding='utf-8') as reader:
long_description = reader.read()
setuptools.setup(
name = 'prenlp',
version = prenlp.__version__,
author = prenlp.__author__,
author_email = prenlp.__email__,
description = 'Preprocessing Library for Natural Language Processing',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/lyeoni/prenlp',
packages = setuptools.find_packages(),
install_requires = [
'nltk==3.2.5', 'konlpy', 'sentencepiece', # Tokenizer
'fasttext', # Model
'ijson', 'py7zr==0.5b5' # Utils
],
package_data = {},
keywords = [
'nlp',
'text-preprocessing'
],
classifiers = [
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: Apache Software License'
]
)