Prepare for publishing

This commit is contained in:
AuroraWright
2024-01-22 06:12:58 +01:00
parent 7931f6d427
commit 24b02b5fc9
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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",