From 24b02b5fc91a741c6af31b503f0702c4029d4004 Mon Sep 17 00:00:00 2001 From: AuroraWright Date: Mon, 22 Jan 2024 06:12:58 +0100 Subject: [PATCH] Prepare for publishing --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c6d5e0d..e1942b1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Command line client for several Japanese OCR providers derived from [Manga OCR]( # Installation -This has been tested with Python 3.11. Newer/older versions might work. For now it can be installed with `pip install https://github.com/AuroraWright/owocr/archive/master.zip` +This has been tested with Python 3.11. Newer/older versions might work. It can be installed with `pip install owocr` # Supported providers diff --git a/setup.py b/setup.py index 71052e1..7ba7b57 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('utf-8').split('# Installation')[0] +long_description = (Path(__file__).parent / "README.md").read_text('utf-8') setup( name="owocr", - version='0.1', + version='1.0', description="Japanese OCR", long_description=long_description, long_description_content_type="text/markdown",