Spaces:
Runtime error
Runtime error
from setuptools import setup, find_packages | |
setup( | |
name='rag', | |
version='0.1', | |
author='Ayush Thakur', | |
author_email='ayusht@wandb.com', | |
description='A simple streamlit powered RAG application.', | |
long_description=open('README.md').read(), | |
long_description_content_type='text/markdown', | |
packages=find_packages(), | |
install_requires=[ | |
# Add your package dependencies here | |
], | |
classifiers=[ | |
'Programming Language :: Python :: 3', | |
'License :: OSI Approved :: MIT License', | |
'Operating System :: OS Independent', | |
], | |
python_requires='>=3.10.12', | |
) | |