Last change
on this file since 2413 was
2413,
checked in by labetoulle, 10 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 |
---|
5 | from __future__ import print_function, unicode_literals, division |
---|
6 | |
---|
7 | # standard library imports |
---|
8 | import os |
---|
9 | # import os.path |
---|
10 | |
---|
11 | # Application library imports |
---|
12 | from gencmip6 import * |
---|
13 | |
---|
14 | |
---|
15 | ROOT_DIR = os.getcwd() |
---|
16 | |
---|
17 | DIR = { |
---|
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 | |
---|
25 | if __name__ == "__main__": |
---|
26 | print(DIR, ) |
---|
Note: See
TracBrowser
for help on using the repository browser.