-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 774 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 774 Bytes
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
#! /usr/bin/env python
"""
Thai word Segmentation using Convolutional Neural Network
"""
from setuptools import setup
setup(
name='deepcut',
packages=['deepcut'],
include_package_data=True,
version='0.7.0.0',
install_requires=['tensorflow>=2.0.0', 'pandas',
'scipy', 'numpy', 'scikit-learn'],
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.git',
keywords=['thai word segmentation deep learning neural network development'],
classifiers=[
'Development Status :: 3 - Alpha'
],
)