We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d26f005 commit 28741f0Copy full SHA for 28741f0
setup.py
@@ -10,12 +10,12 @@
10
assert _search_version
11
version = _search_version.group(1)
12
13
-with open("requirements.txt", "r") as fh:
14
- install_requires = fh.read().split('\n')
15
-
16
-if install_requires and install_requires[-1] == '':
17
- # Remove the last empty line
18
- install_requires = install_requires[:-1]
+install_requires = [
+ 'unstructured[pdf] @ git+https://github.com/clarifai/unstructured.git@support_clarifai_model',
+ 'llama-index-core==0.10.33',
+ 'llama-index-llms-clarifai==0.1.2',
+ 'pi_heif==0.18.0'
+]
19
20
packages = setuptools.find_namespace_packages(include=["clarifai_datautils*"])
21
0 commit comments