From baa74c8b0a265edeb82c8fada7bec898231aff1b Mon Sep 17 00:00:00 2001 From: Daniel Heras Quesada Date: Wed, 1 Oct 2025 17:05:21 +0200 Subject: [PATCH] chore: first commit --- .gitignore | 2 ++ Makefile | 7 +++++++ README.rst | 4 ++++ config.json | 0 main.py | 2 ++ requirements.txt | 6 ++++++ .../test_example.cpython-313-pytest-8.4.2.pyc | Bin 0 -> 1631 bytes tests/test_example.py | 8 ++++++++ 8 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 README.rst create mode 100644 config.json create mode 100644 main.py create mode 100644 requirements.txt create mode 100644 tests/__pycache__/test_example.cpython-313-pytest-8.4.2.pyc create mode 100644 tests/test_example.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3065e0c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/venv +/venv/* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f4db715 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +install: + echo ">>> Installing dependencies" + pip install --upgrade pip + pip install -r requirements.txt + +test: + python -m pytest -v diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..1a210cf --- /dev/null +++ b/README.rst @@ -0,0 +1,4 @@ +Python by example +================= + +The intention of this repository is to teach me the basics, along with the best or common practiced, of python development. diff --git a/config.json b/config.json new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..d4a8ddd --- /dev/null +++ b/main.py @@ -0,0 +1,2 @@ +if __name__ == "__main__": + print("This is a test") diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..20040f5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +numpy==2.3.3 +pandas==2.3.3 +python-dateutil==2.9.0.post0 +pytz==2025.2 +six==1.17.0 +tzdata==2025.2 diff --git a/tests/__pycache__/test_example.cpython-313-pytest-8.4.2.pyc b/tests/__pycache__/test_example.cpython-313-pytest-8.4.2.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52cad949ebd298e9aef03a3a64520ea58301bcd1 GIT binary patch literal 1631 zcmb7EOHUI)9G}_UZeLJQ(I_Oi5RL2s3KS5<8lTZ%g36|eNli9OyFioe?lQBD6k>vr zC)H<0KbaFQ zAuyVcsj&w%puvX#L9T@b5eo`fkWftVcVr|#lb14KaZ78$0GJ6}l+eThfRd|Fl^QIz zSZXB#z$S|H-(;ZnK$cE?0xtqpSX9LZq_GCeXt0#`0L7_l(mx=#vujS(%$C>fN;!Mi zDb=c`?cwYlr)*~3y0_-oW6Sk1bHk{*mYMZTOgEX-gV4BJCuz)g^|Ij^h|OnHaDs|$ z@FU%SAoU~Wlo*U~F$5g%Q;KU36r;TYm&@K?WpRCu2n@*#oGApo()3={+TI+nVLKd&k z8g=VA6{ofWL&+=5no#j5(~~MzQ!kXfADvY(5pk``-)U7MB28psl8GD>vzr+MV-tD2 z%N)yh>vL)nvCB+SH|Y&xcf~;Dq+T*COGl=QN>0@^kV$&zw!U1eSYE}(M7A87fyp@? zuQ@fV%v1GM%UL!o-8QNwN$S{GF6a;n{#X?Lc5$M15b-MNYxg9=|L$sQ}gpNa7@OkH-7@jEKE!IyMqck3uUcpxeJ z>s%bBmCsV}JCc-x^kC%r#z#qcn~P$H9iAWlBq_UF?HQp*OQU|Y_x^g66d4~Rg@1X} z6iI|cBl_+Ga$fh3X51%+(lw6E=cwXQnxhbj2Qk#oYGl8J#8)aCUJaR?Ud{pkp7Kcn zL)WWLxn`L+5W8{gbA~TdaV$azzX7lVUiE&5@i#*+hkgkVo@t6e=sV_?4B;?u^apd6 BJ