From a5f96d071092e97159c1d7b6772e87b81b8d2a65 Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Sun, 28 Dec 2025 09:23:58 -0600 Subject: [PATCH] uv init --- .gitignore | 1 + .python-version | 1 + README.md | 0 main.py | 6 ++++++ pyproject.toml | 7 +++++++ 5 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 README.md create mode 100644 main.py create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b0ac3ed --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.aider* diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..c24d349 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from loapi!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b587f9b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "loapi" +version = "1.0.0" +description = "Loan Operations API" +readme = "README.md" +requires-python = ">=3.14" +dependencies = []