paper_reader / setup.py
ayut's picture
add structure
b723e99
raw
history blame contribute delete
620 Bytes
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',
)