Spaces:
Sleeping
Sleeping
File size: 400 Bytes
d4a486b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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()
) |