Ross McNairn commited on
Commit ·
a93815c
1
Parent(s): c18b115
remove redundant backup
Browse files- setup.py.backup +0 -39
setup.py.backup
DELETED
|
@@ -1,39 +0,0 @@
|
|
| 1 |
-
from setuptools import find_packages, setup
|
| 2 |
-
|
| 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/",
|
| 10 |
-
author="Derek Johnston",
|
| 11 |
-
author_email="derek@wordsmith.ai",
|
| 12 |
-
license="MIT",
|
| 13 |
-
packages=find_packages(),
|
| 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 |
-
"llama-index-cli~=0.1.12",
|
| 24 |
-
"llama-index-readers-file~=0.1.19",
|
| 25 |
-
],
|
| 26 |
-
classifiers=[
|
| 27 |
-
"Intended Audience :: End Users",
|
| 28 |
-
"Topic :: Software Development :: Build Tools",
|
| 29 |
-
"License :: OSI Approved :: MIT License",
|
| 30 |
-
"Programming Language :: Python :: 3",
|
| 31 |
-
"Programming Language :: Python :: 3.8",
|
| 32 |
-
],
|
| 33 |
-
entry_points={
|
| 34 |
-
"console_scripts": [
|
| 35 |
-
"hello-wordsmith=hello_wordsmith.wordsmith:main",
|
| 36 |
-
],
|
| 37 |
-
},
|
| 38 |
-
python_requires=">=3.8",
|
| 39 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|