commit 39947f3c17f407847c94763b1662735d16ed96f7 Author: Andrea Date: Fri Aug 22 17:02:20 2025 +0200 init 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 0000000..46f1ea0 Binary files /dev/null and b/src/__pycache__/__init__.cpython-313.pyc differ diff --git a/src/__pycache__/main.cpython-313.pyc b/src/__pycache__/main.cpython-313.pyc new file mode 100644 index 0000000..9d3ab38 Binary files /dev/null and b/src/__pycache__/main.cpython-313.pyc differ diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..c633bc4 --- /dev/null +++ b/src/main.py @@ -0,0 +1,7 @@ +#! /usr/bin/env python + +def main(): + pass + +if __name__ == "__main__": + main() diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/__pycache__/__init__.cpython-313.pyc b/tests/__pycache__/__init__.cpython-313.pyc new file mode 100644 index 0000000..ff57be0 Binary files /dev/null and b/tests/__pycache__/__init__.cpython-313.pyc differ diff --git a/tests/__pycache__/test_main.cpython-313.pyc b/tests/__pycache__/test_main.cpython-313.pyc new file mode 100644 index 0000000..321d72e Binary files /dev/null and b/tests/__pycache__/test_main.cpython-313.pyc differ 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()