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 cb022d1 commit f9337c5Copy full SHA for f9337c5
docs/conf.py
@@ -1,3 +1,15 @@
1
import datetime
2
+from pathlib import Path
3
+from sphinx.ext import apidoc
4
5
copyright = f"{datetime.datetime.now().year}, Evrone"
6
+
7
+# Auto generate documentation
8
+if False:
9
+ apidoc.main([
10
+ '-f', # force overwrite
11
+ '-T', # no modules.rst toc
12
+ '-e', # Each module on it's own page
13
+ '-o', str(Path(__file__).parent), # Output dir relative to "Sphinx root"
14
+ str(Path(__file__).parent.parent / 'toggl_python') # Source code root
15
+ ])
0 commit comments