0.1.2 release

This commit is contained in:
Maciej Budyś
2022-01-20 22:10:28 +01:00
parent 7c79777c92
commit 3e96a72993
2 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
__version__ = '0.1.1'
__version__ = '0.1.2'
from manga_ocr.ocr import MangaOcr

View File

@@ -1,11 +1,11 @@
from pathlib import Path
from setuptools import setup
long_description = (Path(__file__).parent / "README.md").read_text().split('# Installation')[0]
long_description = (Path(__file__).parent / "README.md").read_text('utf-8').split('# Installation')[0]
setup(
name="manga-ocr",
version='0.1.1',
version='0.1.2',
description="OCR for Japanese manga",
long_description=long_description,
long_description_content_type="text/markdown",