summaryrefslogtreecommitdiff
path: root/notebooks/config
diff options
context:
space:
mode:
authoradamhrv <adam@ahprojects.com>2018-11-19 09:26:03 +0100
committeradamhrv <adam@ahprojects.com>2018-11-19 09:26:03 +0100
commit8c52d20132be81121d1c789951c2571bfa667119 (patch)
treeffbc47f38bf0b329503da30d1dc5de055aeff15f /notebooks/config
parent9bcba0d02aafb34a5a9ca3db2f894f1fc95401c0 (diff)
add nbs
Diffstat (limited to 'notebooks/config')
-rw-r--r--notebooks/config/__init__.py0
-rw-r--r--notebooks/config/config.py11
2 files changed, 11 insertions, 0 deletions
diff --git a/notebooks/config/__init__.py b/notebooks/config/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/notebooks/config/__init__.py
diff --git a/notebooks/config/config.py b/notebooks/config/config.py
new file mode 100644
index 00000000..89cdca8c
--- /dev/null
+++ b/notebooks/config/config.py
@@ -0,0 +1,11 @@
+import os
+import os.path as osp
+
+# Setup directory paths
+project_root = os.path.dirname(os.path.realpath(''))
+DATA_STORE = osp.join(project_root,'data_bodega')
+OUTPUT_DIR = osp.join(DATA_STORE,'output')
+
+# Asset directories
+IMAGES_DIR = osp.join(DATA_STORE,'images')
+MODELS_DIR = osp.join(DATA_STORE,'models') \ No newline at end of file