hfs3-advanced / setup.py
njhaveri's picture
fix
25543b5
raw
history blame contribute delete
296 Bytes
from setuptools import setup, find_packages
setup(
name="aimakerspace",
version="0.1.0",
packages=find_packages(),
install_requires=[
"openai",
"numpy",
"PyPDF2",
"python-dotenv",
"tiktoken",
"fastapi",
"uvicorn",
],
)