raglab 0.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
raglab-0.0.3/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) [year] [fullname]
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
raglab-0.0.3/PKG-INFO ADDED
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: raglab
3
+ Version: 0.0.3
4
+ Summary: Backend of a system to explore RAG operations
5
+ Home-page: https://github.com/addaix/raglab
6
+ License: mit
7
+ Platform: any
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+
11
+
12
+ # raglab
13
+ There is a bit of an air of mystery around this project...
14
+
15
+
16
+ To install: ```pip install raglab```
raglab-0.0.3/README.md ADDED
@@ -0,0 +1,6 @@
1
+
2
+ # raglab
3
+ There is a bit of an air of mystery around this project...
4
+
5
+
6
+ To install: ```pip install raglab```
File without changes
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: raglab
3
+ Version: 0.0.3
4
+ Summary: Backend of a system to explore RAG operations
5
+ Home-page: https://github.com/addaix/raglab
6
+ License: mit
7
+ Platform: any
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+
11
+
12
+ # raglab
13
+ There is a bit of an air of mystery around this project...
14
+
15
+
16
+ To install: ```pip install raglab```
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ setup.cfg
4
+ setup.py
5
+ raglab/__init__.py
6
+ raglab.egg-info/PKG-INFO
7
+ raglab.egg-info/SOURCES.txt
8
+ raglab.egg-info/dependency_links.txt
9
+ raglab.egg-info/not-zip-safe
10
+ raglab.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+ raglab
raglab-0.0.3/setup.cfg ADDED
@@ -0,0 +1,23 @@
1
+ [metadata]
2
+ name = raglab
3
+ version = 0.0.3
4
+ url = https://github.com/addaix/raglab
5
+ platforms = any
6
+ description_file = README.md
7
+ description = Backend of a system to explore RAG operations
8
+ license = mit
9
+ long_description = file:README.md
10
+ long_description_content_type = text/markdown
11
+ keywords =
12
+ display_name = raglab
13
+
14
+ [options]
15
+ packages = find:
16
+ include_package_data = True
17
+ zip_safe = False
18
+ install_requires =
19
+
20
+ [egg_info]
21
+ tag_build =
22
+ tag_date = 0
23
+
raglab-0.0.3/setup.py ADDED
@@ -0,0 +1,3 @@
1
+ from setuptools import setup
2
+
3
+ setup() # Note: Everything should be in the local setup.cfg