mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
30 lines
532 B
Python
30 lines
532 B
Python
|
|
|
|
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"User",
|
|
"UserManager",
|
|
"UserManagerStatic",
|
|
"UserManagerFile",
|
|
"UserDB",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|
|
|
|
# This is (or should be if not) an optional dependency, it's needed so the web module is built first, as some classes need to inherit from WebNode (only when web module is enabled).
|
|
def get_module_dependencies():
|
|
return [
|
|
"web",
|
|
]
|
|
|