This commit is contained in:
Timothy Farrell 2025-12-28 09:23:58 -06:00
parent 45241d32b5
commit a5f96d0710
5 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.aider*

1
.python-version Normal file
View File

@ -0,0 +1 @@
3.14

0
README.md Normal file
View File

6
main.py Normal file
View File

@ -0,0 +1,6 @@
def main():
print("Hello from loapi!")
if __name__ == "__main__":
main()

7
pyproject.toml Normal file
View File

@ -0,0 +1,7 @@
[project]
name = "loapi"
version = "1.0.0"
description = "Loan Operations API"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []