-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (29 loc) · 974 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
from setuptools import setup, find_packages
setup(
name="chatsapi",
version="0.1.0",
description="The World's Fastest AI Agent Framework. Based on SBERT & SpaCy Transforms.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Sathnindu Kottage",
author_email="hello@bysatha.com",
url="https://github.com/chatsapi/chatsapi", # Replace with your GitHub repo
packages=find_packages(),
install_requires=[
"sentence_transformers",
"spacy",
"hnswlib",
"rank_bm25",
"llama-index",
"llama-index-llms-openai",
"llama-index-llms-gemini",
"llama-index-llms-llama-api",
"llama-index-llms-ollama"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)