bofa 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.
bofa-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.3
2
+ Name: bofa
3
+ Version: 0.0.1
4
+ Summary: Have you heard of bofa?
5
+ Author: jonathan343
6
+ Author-email: jonathan343 <jonathangee09@gmail.com>
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+
10
+ # bofa
11
+
12
+ Do you know about bofa?
13
+
14
+ Run `uvx bofa` to find out.
bofa-0.0.1/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # bofa
2
+
3
+ Do you know about bofa?
4
+
5
+ Run `uvx bofa` to find out.
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "bofa"
3
+ version = "0.0.1"
4
+ description = "Have you heard of bofa?"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "jonathan343", email = "jonathangee09@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.10"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ bofa = "bofa:main"
14
+
15
+ [build-system]
16
+ requires = ["uv_build>=0.9.21,<0.11.0"]
17
+ build-backend = "uv_build"
@@ -0,0 +1,7 @@
1
+ import importlib.metadata
2
+
3
+ __version__ = importlib.metadata.version("bofa")
4
+
5
+
6
+ def main():
7
+ print("Bofa deez nuts")