From 3043d67727b3f830aabde5a0be39e0cacb4b1912 Mon Sep 17 00:00:00 2001 From: Egutierrez Date: Mon, 3 Nov 2025 00:42:35 +0100 Subject: [PATCH] python inicializado --- .python-version | 1 + README.md | 0 main.py | 6 ++++++ prueba_ejecucion.py | 1 + pyproject.toml | 7 +++++++ 5 files changed, 15 insertions(+) create mode 100644 .python-version create mode 100644 README.md create mode 100644 main.py create mode 100644 prueba_ejecucion.py create mode 100644 pyproject.toml diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 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..d475c25 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from dagu-automatizaciones!") + + +if __name__ == "__main__": + main() diff --git a/prueba_ejecucion.py b/prueba_ejecucion.py new file mode 100644 index 0000000..b5a4010 --- /dev/null +++ b/prueba_ejecucion.py @@ -0,0 +1 @@ +print("hola holaa") \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b3027b0 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "dagu-automatizaciones" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = []