-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpyxll.cfg
36 lines (33 loc) · 1.05 KB
/
pyxll.cfg
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
32
33
34
35
36
;
; This file is a simple way to encapsulate the configuration
; required to ensure PyXLL loads all it needs to run the
; optimisation examples.
;
; Suppose this file was at
; C:\Users\Steve\pyxll-examples\optimization\pyxll.cfg
;
; To use this file you should ensure that its path is included
; as one of the values listed under your "external_config",
; for example:
;
; external_config =
; C:\Users\sholden\pyxll-examples\optimization\pyxll.cfg
[PYTHON]
;pythonpath:
;
; A list of paths Python will use when importing modules.
; Multiple paths can be listed either as a semi-colon delimited list or across multiple indented lines.
; Paths may be absolute paths or relative to this file.
;
pythonpath = .
[PYXLL]
;modules:
;
; List of modules that PyXLL will load when starting.
; Any code that is to be exposed to Excel should be added to this list, or imported from modules in this list.
; Multiple modules can be listed either as a comma delimited list or across multiple indented lines.
;
modules =
optimize1
optimize2
optimize3