barred 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.
barred-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.3
2
+ Name: barred
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author: Thomas Queste
6
+ Author-email: Thomas Queste <tom@tomsquest.com>
7
+ Requires-Python: >=3.13
8
+ Description-Content-Type: text/markdown
9
+
barred-0.1.0/README.md ADDED
File without changes
@@ -0,0 +1,15 @@
1
+ [project]
2
+ name = "barred"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ dependencies = []
8
+
9
+ [[project.authors]]
10
+ name = "Thomas Queste"
11
+ email = "tom@tomsquest.com"
12
+
13
+ [build-system]
14
+ requires = ["uv_build>=0.12.5,<0.13.0"]
15
+ build-backend = "uv_build"
@@ -0,0 +1,14 @@
1
+ [project]
2
+ name = "barred"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Thomas Queste", email = "tom@tomsquest.com" }
8
+ ]
9
+ requires-python = ">=3.13"
10
+ dependencies = []
11
+
12
+ [build-system]
13
+ requires = ["uv_build>=0.12.5,<0.13.0"]
14
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from barred!"
File without changes