From 012755b7f49e072bb49feb87d0272d92ef9a2569 Mon Sep 17 00:00:00 2001 From: Heiko Joerg Schick Date: Thu, 24 Apr 2025 21:15:37 +0200 Subject: [PATCH] Update repository name from mistral-ocr-python to mistral-ocr Updated repository references in: - README.md: Installation instructions - CONTRIBUTING.md: Development environment setup and project structure - setup.py: Repository URL --- CONTRIBUTING.md | 6 +++--- README.md | 8 ++++---- setup.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0b5780e..ae35147 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -28,8 +28,8 @@ Please be respectful and considerate of others when contributing to this project 1. **Fork and clone the repository**: ```bash - git clone https://github.com/yourusername/mistral-ocr-python.git - cd mistral-ocr-python + git clone https://github.com/yourusername/mistral-ocr.git + cd mistral-ocr ``` 2. **Create a virtual environment**: @@ -51,7 +51,7 @@ Please be respectful and considerate of others when contributing to this project ### Project Structure ``` -mistral-ocr-python/ +mistral-ocr/ ├── mistral_ocr/ # Main package │ ├── __init__.py │ ├── __main__.py # CLI entry point diff --git a/README.md b/README.md index 3c26d70..b19c21c 100644 --- a/README.md +++ b/README.md @@ -36,16 +36,16 @@ The tool handles authentication, file uploads, API communication, and result for ### Installing from source ```bash -git clone https://github.com/yourusername/mistral-ocr-python -cd mistral-ocr-python +git clone https://github.com/yourusername/mistral-ocr +cd mistral-ocr pip install -e . ``` Alternatively, you can use the build script which creates a virtual environment and installs the package: ```bash -git clone https://github.com/yourusername/mistral-ocr-python -cd mistral-ocr-python +git clone https://github.com/yourusername/mistral-ocr +cd mistral-ocr ./build.sh ``` diff --git a/setup.py b/setup.py index f9ebdad..e78b833 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( long_description=long_description, long_description_content_type="text/markdown", author="Mistral OCR Team", - url="https://github.com/yourusername/mistral-ocr-python", + url="https://github.com/yourusername/mistral-ocr", packages=find_packages(), install_requires=[ "requests>=2.25.0",