Bug Fixes
- **dev**: Add hot reloading
([`5884ede`](https://github.com/Kitware/trame-server/commit/5884ede6a2662b830bba6d279d59abab0425e5e7))
This adds a `--hot-reload` option where, if set, controller/state callback functions will be
automatically reloaded for every function call. This excludes functions that are located in
site-packages directories (which are usually libraries that the user is not currently developing).
There is also a `hot_reload` decorator that may be added to functions as well, which will cause the
function to be reloaded every time.
This work is largely based off of https://github.com/julvo/reloading, with some major modifications,
including adding support for methods. His license is included within the file.
Signed-off-by: Patrick Avery <patrick.averykitware.com>