init
This commit is contained in:
4
README.md
Normal file
4
README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Python Project
|
||||
|
||||
A little template for Python projects.
|
||||
|
0
docs/.gitkeep
Normal file
0
docs/.gitkeep
Normal file
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@@ -0,0 +1 @@
|
||||
# List of dependencies
|
0
src/__init__.py
Normal file
0
src/__init__.py
Normal file
BIN
src/__pycache__/__init__.cpython-313.pyc
Normal file
BIN
src/__pycache__/__init__.cpython-313.pyc
Normal file
Binary file not shown.
BIN
src/__pycache__/main.cpython-313.pyc
Normal file
BIN
src/__pycache__/main.cpython-313.pyc
Normal file
Binary file not shown.
7
src/main.py
Normal file
7
src/main.py
Normal file
@@ -0,0 +1,7 @@
|
||||
#! /usr/bin/env python
|
||||
|
||||
def main():
|
||||
pass
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
BIN
tests/__pycache__/__init__.cpython-313.pyc
Normal file
BIN
tests/__pycache__/__init__.cpython-313.pyc
Normal file
Binary file not shown.
BIN
tests/__pycache__/test_main.cpython-313.pyc
Normal file
BIN
tests/__pycache__/test_main.cpython-313.pyc
Normal file
Binary file not shown.
10
tests/test_main.py
Normal file
10
tests/test_main.py
Normal 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()
|
Reference in New Issue
Block a user