diff --git a/README.rst b/README.rst
index 97fff3b..119a0bc 100644
--- a/README.rst
+++ b/README.rst
@@ -188,7 +188,7 @@ default segmenter.
Google Cloud Natural Language API Segmenter
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-`Google Cloud Natural Language API `_
+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
@@ -294,7 +294,7 @@ detail.
MeCab Segmenter
~~~~~~~~~~~~~~~~~~~~~~~
-`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
diff --git a/budou/__version__.py b/budou/__version__.py
index cee0e1c..1d14f80 100644
--- a/budou/__version__.py
+++ b/budou/__version__.py
@@ -1,2 +1,2 @@
-VERSION = (0, 9, 0)
+VERSION = (0, 9, 1)
__version__ = '.'.join(map(str, VERSION))
diff --git a/setup.py b/setup.py
index 2d8b0ac..2e74afc 100644
--- a/setup.py
+++ b/setup.py
@@ -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',