credkit 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.
credkit-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.3
2
+ Name: credkit
3
+ Version: 0.1.0
4
+ Summary: An open credit modeling tool kit
5
+ Author: jt-hill
6
+ Author-email: jt-hill <13084189+jt-hill@users.noreply.github.com>
7
+ Requires-Python: >=3.13
8
+ Description-Content-Type: text/markdown
9
+
10
+ # credkit
11
+
12
+ Credkit is an open toolbox for credit modeling. From single loans to portfolio
13
+ yield calculations, this project provides useful primitives for quickly
14
+ building the types of models that often force teams to reach for Excel.
@@ -0,0 +1,5 @@
1
+ # credkit
2
+
3
+ Credkit is an open toolbox for credit modeling. From single loans to portfolio
4
+ yield calculations, this project provides useful primitives for quickly
5
+ building the types of models that often force teams to reach for Excel.
@@ -0,0 +1,14 @@
1
+ [project]
2
+ name = "credkit"
3
+ version = "0.1.0"
4
+ description = "An open credit modeling tool kit"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "jt-hill", email = "13084189+jt-hill@users.noreply.github.com" }
8
+ ]
9
+ requires-python = ">=3.13"
10
+ dependencies = []
11
+
12
+ [build-system]
13
+ requires = ["uv_build>=0.8.18,<0.9.0"]
14
+ build-backend = "uv_build"
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from credkit!"
File without changes