File size: 1,220 Bytes
feb2d65
54b8802
 
47b3c28
 
4a211f6
47b3c28
 
57fa698
47b3c28
 
 
54b8802
166d794
feb2d65
166d794
4a211f6
 
6921f91
4a211f6
 
 
 
54b8802
47b3c28
 
 
 
4a211f6
54b8802
53561cb
47b3c28
57fa698
53561cb
 
57fa698
54b8802
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 find_packages, setup

setup(
    name="hello-wordsmith",
    version="0.1.0",
    description="A simple Python package to wrap llama-index RAG CLI over Wordsmith data.",
    long_description=open("README.md").read(),
    long_description_content_type="text/markdown",
    url="https://huggingface.co/datasets/derek-at-work/test/",
    author="Derek Johnston",
    author_email="derek@wordsmith.ai",
    license="MIT",
    packages=find_packages(),
    package_data={
        "hello_wordsmith": ["public_wordsmith_dataset/*"],
    },
    install_requires=[
        "chromadb~=0.5.0",
        "llama-index-core==0.10.33",
        "llama-index-llms-openai~=0.1.16",
        "llama-index-embeddings-openai~=0.1.9",
        "llama-index-vector-stores-chroma~=0.1.7",
    ],
    classifiers=[
        "Intended Audience :: End Users",
        "Topic :: Software Development :: Build Tools",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.8",
    ],
    entry_points={
        "console_scripts": [
            "hello-wordsmith=hello_wordsmith.wordsmith:main",
        ],
    },
    python_requires=">=3.8",
)