Spaces:
Runtime error
Runtime error
add structure
Browse files- .gitignore +4 -0
- rag/__init__.py +0 -0
- setup.py +21 -0
.gitignore
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.env
|
| 2 |
+
rag.egg-info
|
| 3 |
+
__pycache__
|
| 4 |
+
|
rag/__init__.py
ADDED
|
File without changes
|
setup.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
|
| 3 |
+
setup(
|
| 4 |
+
name='rag',
|
| 5 |
+
version='0.1',
|
| 6 |
+
author='Ayush Thakur',
|
| 7 |
+
author_email='ayusht@wandb.com',
|
| 8 |
+
description='A simple streamlit powered RAG application.',
|
| 9 |
+
long_description=open('README.md').read(),
|
| 10 |
+
long_description_content_type='text/markdown',
|
| 11 |
+
packages=find_packages(),
|
| 12 |
+
install_requires=[
|
| 13 |
+
# Add your package dependencies here
|
| 14 |
+
],
|
| 15 |
+
classifiers=[
|
| 16 |
+
'Programming Language :: Python :: 3',
|
| 17 |
+
'License :: OSI Approved :: MIT License',
|
| 18 |
+
'Operating System :: OS Independent',
|
| 19 |
+
],
|
| 20 |
+
python_requires='>=3.10.12',
|
| 21 |
+
)
|