forked from rkcosmos/deepcut
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 741 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
Thai word Segmentation using Convolutional Neural Network
"""
from setuptools import setup
setup(
name = 'deepcut',
packages = ['deepcut'],
include_package_data=True,
version = '0.5.0.24',
install_requires=['tensorflow', 'keras>=2.0.0', 'pandas', 'scipy', 'numpy', 'scikit-learn', 'h5py'],
license='MIT',
description = 'A Thai word tokenization library using Deep Neural Network',
author = 'Rakpong Kittinaradorn',
author_email = 'r.kittinaradorn@gmail.com',
url = 'https://github.com/rkcosmos/deepcut',
download_url = 'https://github.com/rkcosmos/deepcut/package/0.5.zip',
keywords = ['thai word segmentation deep learning neural network development'],
classifiers = ['Development Status :: 3 - Alpha'],
)