source: TOOLS/ConsoGENCMIP6/bin/gencmip6_path.py.init @ 2417

Last change on this file since 2417 was 2417, checked in by labetoulle, 9 years ago

put all path definitions in a seperate file

  • Property svn:executable set to *
File size: 474 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4# this must come first
5from __future__ import print_function, unicode_literals, division
6
7# standard library imports
8import os
9# import os.path
10
11# Application library imports
12from gencmip6 import *
13
14
15ROOT_DIR = os.getcwd()
16
17DIR = {
18  "ROOT": ROOT_DIR,
19  "DATA": os.path.join(ROOT_DIR, "output"),
20  "SAVE": os.path.join(ROOT_DIR, "save"),
21  "PLOT": os.path.join(ROOT_DIR, "plot"),
22}
23
24
25if __name__ == "__main__":
26  print(DIR, )
272
Note: See TracBrowser for help on using the repository browser.