29 lines
849 B
Python
29 lines
849 B
Python
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",
|
|
)
|