-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
44 lines (41 loc) · 1.33 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
41
42
43
44
#! /usr/bin/env python
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8-sig') as f:
readme = f.read()
setup(
name='OSKut',
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
version='1.3',
long_description=readme,
long_description_content_type='text/markdown',
install_requires=[
'tensorflow>=2.0.0',
'pandas',
'scipy',
'numpy',
'scikit-learn',
'pyahocorasick<=1.4.0'
],
license='MIT',
package_data={
'oskut': [
'model/ds_weights/*',
'variable/*',
'weight/*',
'deepcut/weight/*'
],
},
description='Handling Cross- and Out-of-Domain Samples in Thai Word Segmentation (ACL 2020 Findings) Stacked Ensemble Framework and DeepCut as Baseline model',
author='Peerat Limkonchotiwat',
author_email='peerat.limkonchotiwat@gmail.com',
url='https://github.com/mrpeerat/OSKut',
keywords=['thai','word segmentation','deep learning'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Natural Language :: Thai',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Text Processing :: Linguistic'
],
)