From 7201fa0138cffe90e4c17851661d86c6c9349d0d Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Mon, 29 Jun 2026 11:35:53 +0530 Subject: [PATCH] Initial Structure --- .env.example | 0 .gitignore | 10 ++++++++++ .python-version | 1 + README.md | 1 + app/main.py | 6 ++++++ docker-compose.yml | 0 pyproject.toml | 7 +++++++ 7 files changed, 25 insertions(+) create mode 100644 .env.example create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 README.md create mode 100644 app/main.py create mode 100644 docker-compose.yml create mode 100644 pyproject.toml diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..e69de29 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv 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..3ce1f07 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Alemno Payments diff --git a/app/main.py b/app/main.py new file mode 100644 index 0000000..5d6df3f --- /dev/null +++ b/app/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from alemno-payments!") + + +if __name__ == "__main__": + main() diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1021379 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "alemno-payments" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.14" +dependencies = []