We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af84b5b commit 67e2edcCopy full SHA for 67e2edc
doc_generator/base.py
@@ -0,0 +1,17 @@
1
+"""
2
+doc_generator base module.
3
+
4
+This is the principal module of the doc_generator project.
5
+here you put your main classes and objects.
6
7
+Be creative! do whatever you want!
8
9
+If you want to replace this with a Flask application run:
10
11
+ $ make init
12
13
+and then choose `flask` as template.
14
15
16
+# example constant variable
17
+NAME = "doc_generator"
tests/test_base.py
@@ -0,0 +1,5 @@
+from doc_generator.base import NAME
+def test_base():
+ assert NAME == "doc_generator"
0 commit comments