Skip to content

Commit

Permalink
update to 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
taishi-i committed May 22, 2018
1 parent 66dddeb commit 654ecbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion nagisa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import utils
from nagisa.tagger import Tagger

version = '0.0.7'
version = '0.0.8'
# Initialize instance
tagger = Tagger()
# Functions
Expand Down
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,14 @@ def extensions():
packages=['nagisa'],
author = 'Taishi Ikeda',
author_email = 'taishi.ikeda.0323@gmail.com',
version = '0.0.7',
version = '0.0.8',
description = 'Japanese word segmentation/POS tagging tool based on neural networks',
long_description = long_description,
url = 'https://github.com/taishi-i/nagisa',
download_url = 'https://github.com/taishi-i/nagisa/archive/0.0.7.tar.gz',
download_url = 'https://github.com/taishi-i/nagisa/archive/0.0.8.tar.gz',
license = 'MIT License',
platforms = 'Unix',
setup_requires=[
'six',
'cython',
'numpy',
],
setup_requires=['six', 'cython', 'numpy',],
install_requires = ['six', 'numpy','DyNet'],
classifiers = classifiers,
include_package_data = True,
Expand Down

0 comments on commit 654ecbe

Please sign in to comment.