Initial commit

This commit is contained in:
2025-04-24 20:54:50 +02:00
commit 240d64023b
13 changed files with 811 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
from setuptools import setup, find_packages
setup(
name="mistral-ocr",
version="0.1.0",
description="A CLI tool for performing OCR on documents using Mistral AI",
author="Mistral OCR Team",
packages=find_packages(),
install_requires=[
"requests>=2.25.0",
],
entry_points={
"console_scripts": [
"mistral-ocr=mistral_ocr.__main__:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.7",
)