forked from haven-jeon/PyKoSpacing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 791 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 791 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
26
27
28
29
from setuptools import setup
from pykospacing import __version__
setup(name='pykospacing',
version=__version__,
url='https://github.com/haven-jeon/PyKoSpacing',
license='GPL-3',
author='Heewon Jeon',
author_email='madjakarta@gmail.com',
description='Python package for automatic Korean word spacing.',
packages=['pykospacing', ],
long_description=open('README.md', encoding='utf-8').read(),
zip_safe=False,
include_package_data=True,
install_requires=[
'tensorflow >= 1.4.0, <= 1.6.0',
'keras >= 2.1.5',
'h5py >= 2.7.1',
'argparse >= 1.4.0',
],
entry_points={
'console_scripts': [
'pykos = pykospacing.pykos:main',
],
},
)