forked from Filimoa/open-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 917 Bytes
/
setup.py
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
from setuptools import setup
setup(
name="openparse",
version="0.5.0",
entry_points={
"console_scripts": [
"openparse-download= openparse.cli:download_unitable_weights",
],
},
install_requires=[
"PyMuPDF >= 1.23.2",
"pillow >= 8.3",
"pydantic >= 2.0",
"pypdf >= 4.0.0",
"pdfminer.six >= 20200401",
"tiktoken >= 0.3",
"openai >= 1.0.0",
"numpy",
],
extras_require={
"ml": [
"torch",
"torchvision",
"transformers",
"tokenizers",
],
},
author="Sergey Filimonov",
author_email="[email protected]",
description="Streamlines the process of preparing documents for LLM's.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Filimoa/open-parse/",
)