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 dad4372 commit 4366f34Copy full SHA for 4366f34
docs/source/conf.py
@@ -13,12 +13,9 @@
13
import os
14
import sys
15
16
-PACKAGE_DIR = "../../dbldatagen"
+PACKAGE_DIR = "../.."
17
18
-sys.path.insert(0, os.path.abspath(f"{PACKAGE_DIR}"))
19
-sys.path.insert(0, os.path.abspath(f"{PACKAGE_DIR}/constraints"))
20
-sys.path.insert(0, os.path.abspath(f"{PACKAGE_DIR}/datasets"))
21
-sys.path.insert(0, os.path.abspath(f"{PACKAGE_DIR}/distributions"))
+sys.path.insert(0, os.path.abspath(PACKAGE_DIR))
22
23
from dbldatagen import *
24
from dbldatagen.distributions import *
makefile
@@ -26,4 +26,7 @@ build:
26
hatch build
27
28
docs:
29
- cd docs && make docs
+ cd docs && make docs
30
+
31
+docs-serve:
32
+ cd docs && make docs && open build/html/index.html
0 commit comments