Skip to content

Commit

Permalink
Merge pull request #19 from manga109/v0.3.0
Browse files Browse the repository at this point in the history
v0.3.0
  • Loading branch information
woodrush authored Oct 6, 2020
2 parents 65dc258 + a129a96 commit a5184cb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ This package provides a simple Python API to read annotation data (i.e., parsing
with some utility functions such as reading an image.

## News
- [Oct 6, 2020]: v0.3.0 is now available. We added [a tag-order-preserving option](https://github.com/manga109/manga109api/blob/master/manga109api/manga109api.py#L31) for `get_annotation`. See (4) in [the Example section](https://github.com/manga109/manga109api#example) for instructions.
- [Aug 28, 2020]: v0.2.0 is out. [The API is drastically improved](https://github.com/matsui528/manga109api/pull/8), thanks for [@i3ear](https://github.com/i3ear)!
- [Aug 28, 2020]: The repository is moved to [manga109 organization](https://github.com/manga109)

Expand Down
1 change: 1 addition & 0 deletions manga109api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__all__ = ['Parser']
__version__ = '0.3.0'
from .manga109api import Parser
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from setuptools import setup, find_packages
import re

with open('README.md') as f:
readme = f.read()
Expand All @@ -8,9 +9,15 @@
for line in f:
requirements.append(line.rstrip())

with open('manga109api/__init__.py') as f:
# Version is written in manga109api/__init__.py
# This function simply reads it
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)


setup(
name='manga109api',
version='0.2.1',
version=version,
description='Simple python API to read annotation data of Manga109',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit a5184cb

Please sign in to comment.