From dbef87dd0eb74e223d4d71c1a6e2cc1d22cdc149 Mon Sep 17 00:00:00 2001 From: Fernando Melo Date: Wed, 27 May 2026 11:32:55 -0300 Subject: [PATCH] initial --- .python-version | 1 + main.py | 6 ++++++ pyproject.toml | 7 +++++++ 3 files changed, 14 insertions(+) create mode 100644 .python-version create mode 100644 main.py create mode 100644 pyproject.toml diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/main.py b/main.py new file mode 100644 index 0000000..965abea --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from itti-adb!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c7fd399 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "itti-adb" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = []