smvp 0.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.
smvp-0.0.0/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.12
smvp-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: smvp
3
+ Version: 0.0.0
4
+ Summary: Coming soon...
5
+ Author-email: Peter Nardi <geozeke@gmail.com>
6
+ Requires-Python: >=3.12
smvp-0.0.0/README.md ADDED
File without changes
@@ -0,0 +1,20 @@
1
+ [project]
2
+ name = "smvp"
3
+ version = "0.0.0"
4
+ description = "Coming soon..."
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Peter Nardi", email = "geozeke@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.12"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ smvp = "smvp:main"
14
+
15
+ [tool.uv.sources]
16
+ ysm = { workspace = true }
17
+
18
+ [build-system]
19
+ requires = ["hatchling"]
20
+ build-backend = "hatchling.build"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from smvp!")
smvp-0.0.0/uv.lock ADDED
@@ -0,0 +1,7 @@
1
+ version = 1
2
+ requires-python = ">=3.12"
3
+
4
+ [[package]]
5
+ name = "smvp"
6
+ version = "0.0.0"
7
+ source = { editable = "." }