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

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

Move all scripts to the same dir to use common configuration files

  • Property svn:executable set to *
File size: 473 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, )
Note: See TracBrowser for help on using the repository browser.