shivam-python-ext 0.1.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,9 @@
1
+ Metadata-Version: 2.3
2
+ Name: shivam-python-ext
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author: Shivam Kumar
6
+ Author-email: Shivam Kumar <shivamkumar1n2@gmail.com>
7
+ Requires-Python: >=3.14
8
+ Description-Content-Type: text/markdown
9
+
File without changes
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "shivam-python-ext"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Shivam Kumar", email = "shivamkumar1n2@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.14"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ shivam-python-ext = "shivam_python_ext:main"
14
+
15
+ [build-system]
16
+ requires = ["uv_build>=0.11.20,<0.12.0"]
17
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from shivam-python-ext!")