Source file Setup.ml

1
2
3
4
5
6
7
8
9
let () = Wrap_utils.init ();;
let __wrap_namespace = Py.import "scipy.setup"

let get_py name = Py.Module.get __wrap_namespace name
let configuration ?parent_package ?top_path () =
   Py.Module.get_function_with_keywords __wrap_namespace "configuration"
     [||]
     (Wrap_utils.keyword_args [("parent_package", parent_package); ("top_path", top_path)])