megabots / setup.py
momegas's picture
🧹 Minor changes
ac5596d
raw
history blame
854 Bytes
from setuptools import setup, find_packages
VERSION = "0.0.7"
setup(
name="megabots",
version=VERSION,
packages=find_packages(),
install_requires=[
"langchain",
"tiktoken",
"unstructured",
"fastapi",
"faiss-cpu",
"pdfminer.six",
],
author="Megaklis Vasilakis",
author_email="megaklis.vasilakis@gmail.com",
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",
classifiers=[
# Choose appropriate classifiers from
# https://pypi.org/classifiers/
"Development Status :: 4 - Beta"
],
)