Skip to content

Commit

Permalink
Merge pull request #77 from google/update-readme
Browse files Browse the repository at this point in the history
Update README to make it PyPI compatible.
  • Loading branch information
tushuhei authored Sep 3, 2018
2 parents cf1d4f4 + 1f27125 commit 198df2b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ default segmenter.
Google Cloud Natural Language API Segmenter
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`Google Cloud Natural Language API <https://cloud.google.com/natural-language/>`_
Google Cloud Natural Language API (https://cloud.google.com/natural-language/)
(NL API) analyzes the input sentence using
machine learning technology. The API can extract not only syntax but also
entities included in the sentence, which can be used for better quality
Expand Down Expand Up @@ -294,7 +294,7 @@ detail.
MeCab Segmenter
~~~~~~~~~~~~~~~~~~~~~~~

`MeCab <https://github.com/taku910/mecab>`_ is an open source text segmentation
MeCab (https://github.com/taku910/mecab) is an open source text segmentation
library for Japanese language. MeCab Segmenter does not require any billed API
calling unlike Google Cloud Natural Language API Segmenter, so you can process
the sentences without internet connection free. You can also customize the
Expand Down
2 changes: 1 addition & 1 deletion budou/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (0, 9, 0)
VERSION = (0, 9, 1)
__version__ = '.'.join(map(str, VERSION))
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ def read_file(name):
packages=['budou'],
install_requires=read_file('requirements.txt').splitlines(),
tests_require=['mock'],
long_description=read_file('README.rst'),
long_description_content_type='text/markdown',
test_suite='tests',
long_description=read_file('README.rst'),
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
Expand Down

0 comments on commit 198df2b

Please sign in to comment.