gophermap 0.0.1__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: gophermap
3
+ Version: 0.0.1
4
+ Summary: Coming soon
5
+ Author: Dave Pearson
6
+ Author-email: Dave Pearson <davep@davep.org>
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
9
+
File without changes
@@ -0,0 +1,23 @@
1
+ [project]
2
+ name = "gophermap"
3
+ version = "0.0.1"
4
+ description = "Coming soon"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Dave Pearson", email = "davep@davep.org" }
8
+ ]
9
+ requires-python = ">=3.12"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ gophermap = "gophermap:main"
14
+
15
+ [build-system]
16
+ requires = ["uv_build>=0.11.32,<0.12.0"]
17
+ build-backend = "uv_build"
18
+
19
+ [[tool.uv.index]]
20
+ name = "testpypi"
21
+ url = "https://test.pypi.org/simple/"
22
+ publish-url = "https://test.pypi.org/legacy/"
23
+ explicit = true
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from gophermap!")