diff --git a/doc_generator/base.py b/doc_generator/base.py new file mode 100644 index 0000000..c69f842 --- /dev/null +++ b/doc_generator/base.py @@ -0,0 +1,17 @@ +""" +doc_generator base module. + +This is the principal module of the doc_generator project. +here you put your main classes and objects. + +Be creative! do whatever you want! + +If you want to replace this with a Flask application run: + + $ make init + +and then choose `flask` as template. +""" + +# example constant variable +NAME = "doc_generator" \ No newline at end of file diff --git a/tests/test_base.py b/tests/test_base.py new file mode 100644 index 0000000..330caec --- /dev/null +++ b/tests/test_base.py @@ -0,0 +1,5 @@ +from doc_generator.base import NAME + + +def test_base(): + assert NAME == "doc_generator" \ No newline at end of file