jehoctor-rag-demo 0.1.1.dev1__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.
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.3
2
+ Name: jehoctor-rag-demo
3
+ Version: 0.1.1.dev1
4
+ Summary: Chat with Wikipedia
5
+ Author: James Hoctor
6
+ Author-email: James Hoctor <JEHoctor@protonmail.com>
7
+ Requires-Python: >=3.13
8
+ Description-Content-Type: text/markdown
9
+
10
+ # RAG-demo
11
+ Chat with Wikipedia
@@ -0,0 +1,2 @@
1
+ # RAG-demo
2
+ Chat with Wikipedia
@@ -0,0 +1,33 @@
1
+ [project]
2
+ name = "jehoctor-rag-demo"
3
+ version = "0.1.1.dev1"
4
+ description = "Chat with Wikipedia"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "James Hoctor", email = "JEHoctor@protonmail.com" }
8
+ ]
9
+ requires-python = ">=3.13"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ chat = "rag_demo:main"
14
+
15
+ [dependency-groups]
16
+ dev = [
17
+ "pytest>=8.4.2",
18
+ "ruff>=0.14.3",
19
+ "mypy>=1.18.2",
20
+ ]
21
+
22
+ [[tool.uv.index]]
23
+ name = "testpypi"
24
+ url = "https://test.pypi.org/simple/"
25
+ publish-url = "https://test.pypi.org/legacy/"
26
+ explicit = true
27
+
28
+ [build-system]
29
+ requires = ["uv_build>=0.8.0,<0.9"]
30
+ build-backend = "uv_build"
31
+
32
+ [tool.uv.build-backend]
33
+ module-name = "rag_demo"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from rag-demo!")
File without changes