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 +13 -0
- fno-0.0.0/README.md +3 -0
- fno-0.0.0/pyproject.toml +18 -0
- fno-0.0.0/src/fno/__init__.py +6 -0
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
fno-0.0.0/pyproject.toml
ADDED
|
@@ -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"]
|