This commit is contained in:
2025-08-22 17:02:20 +02:00
commit 39947f3c17
11 changed files with 22 additions and 0 deletions

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
# Python Project
A little template for Python projects.

0
docs/.gitkeep Normal file
View File

1
requirements.txt Normal file
View File

@@ -0,0 +1 @@
# List of dependencies

0
src/__init__.py Normal file
View File

Binary file not shown.

Binary file not shown.

7
src/main.py Normal file
View File

@@ -0,0 +1,7 @@
#! /usr/bin/env python
def main():
pass
if __name__ == "__main__":
main()

0
tests/__init__.py Normal file
View File

Binary file not shown.

Binary file not shown.

10
tests/test_main.py Normal file
View File

@@ -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()