forked from weaviate/Verba
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (39 loc) · 1.47 KB
/
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
31
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
setup(
name="verba_rag",
version="0.2.3",
packages=find_packages(),
entry_points={
"console_scripts": [
"verba=verba_rag.server.cli:cli",
"verba-ingest=verba.ingestion.cli:cli",
],
},
author="Weaviate",
author_email="[email protected]",
description="Welcome to Verba: The Golden RAGtriever, an open-source initiative designed to offer a streamlined, user-friendly interface for Retrieval-Augmented Generation (RAG) applications. In just a few easy steps, dive into your data and make meaningful interactions!",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/weaviate/Verba",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
include_package_data=True,
install_requires=[
"weaviate-client>=3.23.1",
"python-dotenv>=1.0.0",
"openai>=0.27.9",
"wasabi>=1.1.2",
"spacy",
"fastapi>=0.102.0",
"uvicorn[standard]",
"click>= 8.1.7",
],
extras_require={"dev": ["pytest", "wheel", "twine", "black", "setuptools"]},
)