Spaces:
Runtime error
Runtime error
File size: 1,103 Bytes
56724c7 ca2f549 2c8cfc0 56724c7 6ec321a 2c8cfc0 56724c7 0568ad3 df40774 86c7913 56724c7 ac5596d 56724c7 6ec321a 3d169b1 8d6e28c 56724c7 b61e579 56724c7 |
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 41 |
from setuptools import setup, find_packages
VERSION = "0.0.11"
setup(
name="megabots",
version=VERSION,
packages=find_packages(),
install_requires=[
"langchain",
"tiktoken",
"unstructured",
"fastapi",
"faiss-cpu",
"pdfminer.six",
"gradio",
"python-dotenv",
"openai",
],
author="Megaklis Vasilakis",
author_email="[email protected]",
description="🤖 Megabots provides State-of-the-art, production ready bots made mega-easy, so you don't have to build them from scratch 🤯 Create a bot, now 🫵",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/momegas/megabots",
keywords=[
"bot",
"qna-bot",
"information-retrieval",
"chatbot",
"question-answering",
"prompt-engineering",
],
license="MIT",
classifiers=[
# Choose appropriate classifiers from
# https://pypi.org/classifiers/
"Development Status :: 4 - Beta"
],
)
|