File: config.py

package info (click to toggle)
python-pweave 0.30.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,064 kB
  • sloc: python: 30,281; makefile: 167
file content (31 lines) | stat: -rw-r--r-- 917 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

rcParams = {"figdir": "figures",
            "usematplotlib": True,
            "storeresults": False,
            "cachedir": 'cache',
            "chunk": {"defaultoptions": {
                "echo": True,
                "results": 'verbatim',
                "fig": True,
                "include": True,
                "evaluate": True,
                "caption": False,
                "term": False,
                "name": None,
                "wrap": "output",
                "f_pos": "htpb",
                "f_size": (6, 4),
                "f_env": None,
                "dpi" : 200,
                "f_spines": True,
                "complete": True,
                "option_string": "",
                "display_data" : True,
                "display_stream" : True
            }
    }
}

class PwebProcessorGlobals(object):
    """A class to hold the globals used in processors"""
    globals = {}