From 39947f3c17f407847c94763b1662735d16ed96f7 Mon Sep 17 00:00:00 2001 From: Andrea Date: Fri, 22 Aug 2025 17:02:20 +0200 Subject: [PATCH] init --- README.md | 4 ++++ docs/.gitkeep | 0 requirements.txt | 1 + src/__init__.py | 0 src/__pycache__/__init__.cpython-313.pyc | Bin 0 -> 141 bytes src/__pycache__/main.cpython-313.pyc | Bin 0 -> 301 bytes src/main.py | 7 +++++++ tests/__init__.py | 0 tests/__pycache__/__init__.cpython-313.pyc | Bin 0 -> 143 bytes tests/__pycache__/test_main.cpython-313.pyc | Bin 0 -> 743 bytes tests/test_main.py | 10 ++++++++++ 11 files changed, 22 insertions(+) create mode 100644 README.md create mode 100644 docs/.gitkeep create mode 100644 requirements.txt create mode 100644 src/__init__.py create mode 100644 src/__pycache__/__init__.cpython-313.pyc create mode 100644 src/__pycache__/main.cpython-313.pyc create mode 100644 src/main.py create mode 100644 tests/__init__.py create mode 100644 tests/__pycache__/__init__.cpython-313.pyc create mode 100644 tests/__pycache__/test_main.cpython-313.pyc create mode 100644 tests/test_main.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..abf1b2f --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Python Project + +A little template for Python projects. + diff --git a/docs/.gitkeep b/docs/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..de43fe8 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +# List of dependencies \ No newline at end of file diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/__pycache__/__init__.cpython-313.pyc b/src/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..46f1ea0a2fd1e6e0d45e54bc5f7d6e20a799686a GIT binary patch literal 141 zcmey&%ge<81njLVGC=fW5CH>>P{wB#AY&>+I)f&o-%5reCLr%KNa~i3enx(7s(xZ# zN>OT}enC-wR%&udv3@}%h^b#(l&l{gpP83g5+AQuPXx24CKVeXXa&=#K-FuRNmsS$<0qG%}KQ@Vg+gk8D9)y Nd}L;1WGrF^vH)xJAqW5f literal 0 HcmV?d00001 diff --git a/tests/__pycache__/test_main.cpython-313.pyc b/tests/__pycache__/test_main.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..321d72e7307ee37a032cdc362760cbcefba95062 GIT binary patch literal 743 zcmZ8fF>ljA6n=L;rzUN%R28Ys764{CWKVz z$P$U406%~qQX$mJh>59NB$u7{9GfC;c=x^cy?6J$cUQDpO~5rh`+WQr_h01H%dSA7 z5zIk?Wc%=xY332;`&{!)*a2y^L5cxCXw-$bd)HcGEe5u-{#b42f7vX zV91BuZ(Nh_vs{eBB<)3YBJHeliZ+5d3_vppnoFiF$=jfXw6r}GzMVV$*ksS}fNO!N zQC&#&6d-}ceKd1;4hR3T7^5YbWZg3o4|N;{Q$2YVN0|wxrv!rx<(SecYO6Cn&F@gG^z!vuZRc-{p26VM;4NGU=TdB3 zh>ef^PY=EeufQmLfu7&U9i`H694nPKl^RbDXCuOEN|C^dag{nsw8=(E8mAMb^eUF; z_mnbOm?e=4vrH#1XLvJmcahUAGW0_CKQ=4zE1YMfShDa_7;qfjzy6EDhDr*H~DLv7fN@1KbcHixu1q%yAyOj3_kCCH* literal 0 HcmV?d00001 diff --git a/tests/test_main.py b/tests/test_main.py new file mode 100644 index 0000000..da8b6c4 --- /dev/null +++ b/tests/test_main.py @@ -0,0 +1,10 @@ +from src.main import main +import unittest + +class TestMain(unittest.TestCase): + def test_main(self): + self.assertEqual(True, True) + + +if __name__ == '__main__': + unittest.main()