diff --git a/pyproject.toml b/pyproject.toml index b34a194..fa76241 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "py-zerox" -version = "0.0.5" +version = "0.0.6" description = "ocr documents using vision models from all popular providers like OpenAI, Azure OpenAI, Anthropic, AWS Bedrock etc" authors = ["wizenheimer","pradhyumna85"] license = "MIT" diff --git a/setup.cfg b/setup.cfg index f8bbc0f..68ee0bc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = py-zerox -version = 0.0.5 +version = 0.0.6 description = ocr documents using vision models from all popular providers like OpenAI, Azure OpenAI, Anthropic, AWS Bedrock etc long_description = file: README.md long_description_content_type = text/markdown diff --git a/setup.py b/setup.py index 75b677b..1ba6201 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,8 @@ class InstallSystemDependencies(install): def run(self): try: - subprocess.check_call([sys.executable, "-m", "py_zerox.scripts.pre_install"]) + subprocess.check_call( + [sys.executable, "-m", "py_zerox.scripts.pre_install"]) except subprocess.CalledProcessError as e: print(f"Pre-install script failed: {e}", file=sys.stderr) sys.exit(1) @@ -19,7 +20,7 @@ def run(self): cmdclass={ "install": InstallSystemDependencies, }, - version="0.0.5", + version="0.0.6", packages=find_packages(where="py_zerox"), # Specify the root folder package_dir={"": "py_zerox"}, # Map root directory include_package_data=True,