forked from PyThaiNLP/spelling-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 844 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
requirements = [
'pythainlp',
'sklearn-crfsuite'
]
setup(
name='pythaispell',
version='0.1',
description="Thai Spell Check",
author='Wannaphong Phatthiyaphaibun',
author_email='wannaphong@kkumail.com',
url='https://github.com/wannaphongcom/Thai_Spell_Check',
packages=find_packages(),
package_data={'pythaispell': ['sp.model']},
include_package_data=True,
install_requires=requirements,
license='Apache Software License 2.0',
zip_safe=False,
keywords='promptpay',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: Implementation'],
)