rwv-test-server 1.0.0__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,13 @@
1
+ # Generated by Cargo
2
+ /target/
3
+ Cargo.lock
4
+
5
+ # IDE
6
+ .idea/
7
+ .vscode/
8
+ *.swp
9
+ *.swo
10
+ *~
11
+
12
+ # mdbook output
13
+ /book/
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: rwv-test-server
3
+ Version: 1.0.0
4
+ Summary: Test fixture for repoweave e2e registry tests
5
+ License-Expression: MIT
6
+ Requires-Python: >=3.9
7
+ Requires-Dist: rwv-test-types>=1.0.0
@@ -0,0 +1,11 @@
1
+ [project]
2
+ name = "rwv-test-server"
3
+ version = "1.0.0"
4
+ description = "Test fixture for repoweave e2e registry tests"
5
+ license = "MIT"
6
+ requires-python = ">=3.9"
7
+ dependencies = ["rwv-test-types>=1.0.0"]
8
+
9
+ [build-system]
10
+ requires = ["hatchling"]
11
+ build-backend = "hatchling.build"
@@ -0,0 +1,4 @@
1
+ from rwv_test_types import greeting
2
+
3
+ def main():
4
+ print(greeting())