From 3e96a729936382e25567aae363dae36d43bc8aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Budy=C5=9B?= Date: Thu, 20 Jan 2022 22:10:28 +0100 Subject: [PATCH] 0.1.2 release --- manga_ocr/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manga_ocr/__init__.py b/manga_ocr/__init__.py index 91bf945..09c8697 100644 --- a/manga_ocr/__init__.py +++ b/manga_ocr/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.1.1' +__version__ = '0.1.2' from manga_ocr.ocr import MangaOcr diff --git a/setup.py b/setup.py index 1b2034d..0e96db7 100644 --- a/setup.py +++ b/setup.py @@ -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",