Spaces:
Configuration error
Configuration error
File size: 1,328 Bytes
05e6f93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read().splitlines()
setup(
name="sparrow-parse",
version="0.5.4",
author="Andrej Baranovskij",
author_email="[email protected]",
description="Sparrow Parse is a Python package (part of Sparrow) for parsing and extracting information from documents.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/katanaml/sparrow/tree/main/sparrow-data/parse",
project_urls={
"Homepage": "https://github.com/katanaml/sparrow/tree/main/sparrow-data/parse",
"Repository": "https://github.com/katanaml/sparrow",
},
classifiers=[
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Software Development",
"Programming Language :: Python :: 3.10",
],
entry_points={
'console_scripts': [
'sparrow-parse=sparrow_parse:main',
],
},
keywords="llm, vllm, ocr, vision",
packages=find_packages(),
python_requires='>=3.10',
install_requires=requirements,
)
|