Initial commit
This commit is contained in:
@@ -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",
|
||||
)
|
||||
Reference in New Issue
Block a user