Ross McNairn commited on
Commit ·
4a211f6
1
Parent(s): 57fa698
strip down deps and version lock
Browse files
setup.py
CHANGED
|
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|
| 3 |
setup(
|
| 4 |
name="hello-wordsmith",
|
| 5 |
version="0.1.0",
|
| 6 |
-
description="A simple Python package to
|
| 7 |
long_description=open("README.md").read(),
|
| 8 |
long_description_content_type="text/markdown",
|
| 9 |
url="https://huggingface.co/datasets/derek-at-work/test/",
|
|
@@ -14,13 +14,19 @@ setup(
|
|
| 14 |
package_data={
|
| 15 |
'hello_wordsmith': ['public_wordsmith_dataset/*'],
|
| 16 |
},
|
| 17 |
-
install_requires=[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
classifiers=[
|
| 19 |
"Intended Audience :: End Users",
|
| 20 |
"Topic :: Software Development :: Build Tools",
|
| 21 |
"License :: OSI Approved :: MIT License",
|
| 22 |
"Programming Language :: Python :: 3",
|
| 23 |
-
"Programming Language :: Python :: 3.
|
| 24 |
],
|
| 25 |
entry_points={
|
| 26 |
"console_scripts": [
|
|
|
|
| 3 |
setup(
|
| 4 |
name="hello-wordsmith",
|
| 5 |
version="0.1.0",
|
| 6 |
+
description="A simple Python package to wrap llama-index RAG CLI over Wordsmith data.",
|
| 7 |
long_description=open("README.md").read(),
|
| 8 |
long_description_content_type="text/markdown",
|
| 9 |
url="https://huggingface.co/datasets/derek-at-work/test/",
|
|
|
|
| 14 |
package_data={
|
| 15 |
'hello_wordsmith': ['public_wordsmith_dataset/*'],
|
| 16 |
},
|
| 17 |
+
install_requires=[
|
| 18 |
+
"chromadb~=0.5.0",
|
| 19 |
+
"llama-index-core~=0.10.33",
|
| 20 |
+
"llama-index-llms-openai~=0.1.16",
|
| 21 |
+
"llama-index-embeddings-openai~=0.1.9",
|
| 22 |
+
"llama-index-vector-stores-chroma~=0.1.7",
|
| 23 |
+
],
|
| 24 |
classifiers=[
|
| 25 |
"Intended Audience :: End Users",
|
| 26 |
"Topic :: Software Development :: Build Tools",
|
| 27 |
"License :: OSI Approved :: MIT License",
|
| 28 |
"Programming Language :: Python :: 3",
|
| 29 |
+
"Programming Language :: Python :: 3.8",
|
| 30 |
],
|
| 31 |
entry_points={
|
| 32 |
"console_scripts": [
|