Commit cf2518e7 authored by haven-jeon's avatar haven-jeon
Browse files

add requirements.txt

parent d73425ba
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
setup.py
__pycache__
.eggs
dist
+5 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ PyKoSpacing

Python package for automatic Korean word spacing.

R verson can be found [here](https://github.com/haven-jeon/PyKoSpacing).
R verson can be found [here](https://github.com/haven-jeon/KoSpacing).

[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)

@@ -30,7 +30,10 @@ Word spacing is one of the important parts of the preprocessing of Korean text a

To install from GitHub, use

    pip install git+git://github.com/haven-jeon/PyKoSpacing.git
    pip install tensorflow
    pip install keras
    pip install h5py
    pip install git+https://github.com/haven-jeon/PyKoSpacing.git


#### Example 

requirements.txt

0 → 100644
+3 −0
Original line number Diff line number Diff line
tensorflow == 1.4.*
keras == 2.1.*
h5py == 2.7.*
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ setup(name='pykospacing',

      include_package_data=True,

      setup_requires=['tensorflow==1.4.0', 'keras==2.1.5', 'h5py==2.7.1'],
      install_requires=['tensorflow>=1.4.0', 'keras>=2.1.5', 'h5py>=2.7.0'],
      )