Skip to content

Commit

Permalink
update v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
taishi-i committed Jul 31, 2023
1 parent e279d2b commit 45c8f68
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pip install nagisa

[mecab-python3](https://github.com/SamuraiT/mecab-python3)
```
pip install mecab-python3==0.996.5
pip install mecab-python3
```

[GiNZA](https://github.com/megagonlabs/ginza)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = 'Taishi Ikeda'

# The full version, including alpha/beta/rc tags
release = '0.0.8'
release = '0.0.9'

# -- General configuration ---------------------------------------------------

Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
'License :: OSI Approved :: MIT License', 'Natural Language :: Japanese',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Operating System :: Unix',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: Unix',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development :: Libraries :: Python Modules'
]
Expand Down Expand Up @@ -37,15 +42,15 @@ def _long_description():

setup(
name='toiro',
version='0.0.8',
version='0.0.9',
description='A comparison tool of Japanese tokenizers',
author='Taishi Ikeda',
author_email='[email protected]',
long_description_content_type='text/markdown',
long_description=_long_description(),
keywords='Japanese NLP',
url='https://github.com/taishi-i/toiro',
download_url='https://github.com/taishi-i/toiro/archive/0.0.8.tar.gz',
download_url='https://github.com/taishi-i/toiro/archive/0.0.9.tar.gz',
packages=['toiro.datadownloader', 'toiro.tokenizers', 'toiro.classifiers'],
install_requires=[
'requests', 'tqdm', 'pandas', 'scikit-learn', 'py-cpuinfo', 'janome'
Expand Down
2 changes: 1 addition & 1 deletion toiro/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.8"
__version__ = "0.0.9"

from . import tokenizers
from . import classifiers
Expand Down

0 comments on commit 45c8f68

Please sign in to comment.