fno 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.
fno-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: fno
3
+ Version: 0.0.0
4
+ Summary: Reserved for footnote (footnote.sh) - an autonomous dev pipeline. Coming soon.
5
+ Project-URL: Homepage, https://footnote.sh
6
+ Author: J.N. Choi
7
+ License-Expression: MIT
8
+ Requires-Python: >=3.11
9
+ Description-Content-Type: text/markdown
10
+
11
+ # fno
12
+
13
+ Reserved for **footnote** (https://footnote.sh) - an autonomous dev pipeline. The real package ships at launch.
fno-0.0.0/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # fno
2
+
3
+ Reserved for **footnote** (https://footnote.sh) - an autonomous dev pipeline. The real package ships at launch.
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "fno"
7
+ version = "0.0.0"
8
+ description = "Reserved for footnote (footnote.sh) - an autonomous dev pipeline. Coming soon."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "MIT"
12
+ authors = [{ name = "J.N. Choi" }]
13
+
14
+ [project.urls]
15
+ Homepage = "https://footnote.sh"
16
+
17
+ [tool.hatch.build.targets.wheel]
18
+ packages = ["src/fno"]
@@ -0,0 +1,6 @@
1
+ """fno - reserved for footnote (footnote.sh).
2
+
3
+ Placeholder package to claim the name; the real `fno` CLI ships at launch.
4
+ """
5
+
6
+ __version__ = "0.0.0"