File size: 296 Bytes
25543b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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",
    ],
)