You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
1.5 KiB

  1. #include "common.h"
  2. #include "storm/utility/storm-version.h"
  3. PYBIND11_MODULE(info, m) {
  4. m.doc() = "Storm information";
  5. py::class_<storm::utility::StormVersion>(m, "Version", "Version information for Storm")
  6. // static properties are still called with self as argument (which we ignore), see
  7. // https://pybind11.readthedocs.io/en/master/advanced/classes.html#static-properties
  8. .def_property_readonly_static("major", [](py::object /* self */){ return storm::utility::StormVersion::versionMajor; }, "Storm major version.")
  9. .def_property_readonly_static("minor", [](py::object /* self */){ return storm::utility::StormVersion::versionMinor; }, "Storm minor version.")
  10. .def_property_readonly_static("patch", [](py::object /* self */){ return storm::utility::StormVersion::versionPatch; }, "Storm patch version.")
  11. .def_property_readonly_static("development", [](py::object /* self */){ return storm::utility::StormVersion::versionDev; }, "Flag if Storm is development version.")
  12. .def_property_readonly_static("short", [](py::object /* self */){ return storm::utility::StormVersion::shortVersionString(); }, "Storm version in short representation.")
  13. .def_property_readonly_static("long", [](py::object /* self */){ return storm::utility::StormVersion::longVersionString(); }, "Storm version in long representation.")
  14. .def_property_readonly_static("build_info", [](py::object /* self */){ return storm::utility::StormVersion::buildInfo(); }, "Build info for Storm.")
  15. ;
  16. }