MCQ-Generator / setup.py
yukti-kash's picture
Upload 4 files
d4a486b verified
raw
history blame
No virus
400 Bytes
from setuptools import setup,find_packages
# find_packages - automatically detect the local packages
setup(
name = 'mecq_gen',
version='0.0.1',
description='Creating the projcet : MCQ Generater',
author='Yukti Kashyap',
author_email='kashyapyukti12@gmail.com',
install_requires=['openai','langchain','streamlit','python-dotenv','PyPDF2'],
packages=find_packages()
)