bbpylib 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.
@@ -0,0 +1,9 @@
1
+ __pycache__/
2
+ *.pyc
3
+ *.pyo
4
+ *.egg-info/
5
+ dist/
6
+ build/
7
+ .ipynb_checkpoints/
8
+ .venv/
9
+ .env
bbpylib-0.1.0/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Brandon Bennett
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction...
bbpylib-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: bbpylib
3
+ Version: 0.1.0
4
+ Summary: A personal Python utility library.
5
+ Author: Brandon Bennett
6
+ License: MIT
7
+ License-File: LICENSE
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ # bbpylib
12
+
13
+ A personal Python utility library.
@@ -0,0 +1,3 @@
1
+ # bbpylib
2
+
3
+ A personal Python utility library.
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.25"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "bbpylib"
7
+ version = "0.1.0"
8
+ description = "A personal Python utility library."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "Brandon Bennett" }
14
+ ]
15
+
16
+ [tool.hatch.build.targets.wheel]
17
+ packages = ["src/bbpylib"]
@@ -0,0 +1,10 @@
1
+ """
2
+ bbpylib — personal Python utilities.
3
+ """
4
+
5
+ __all__ = []
6
+
7
+ print("Hello this is an update of bbpylib")
8
+
9
+ def foobar(s):
10
+ return "foo" + s + "bar"