Creating command-line Tools

[1]:
from ctapipe.core import Tool, Component, TelescopeComponent
from ctapipe.core.traits import (
    Integer, Float, List, Dict, Unicode,
    TraitError, observe, FloatTelescopeParameter,
    Path,
)
import logging
from time import sleep
from astropy import units as u
from ctapipe.utils import get_dataset_path
[2]:
GAMMA_FILE = get_dataset_path('gamma_test.simtel.gz')

see https://github.com/ipython/traitlets/blob/master/examples/myapp.py

Setup:

Create a few Components that we will use later in a Tool:

[3]:
class MyComponent(Component):
    """ A Component that does stuff """

    value = Integer(default_value=-1, help="Value to use").tag(config=True)

    def do_thing(self):
        self.log.debug("Did thing")


# in order to have 2 of the same components at once
class SecondaryMyComponent(MyComponent):
    pass


class AdvancedComponent(Component):
    """ An advanced technique """

    value1 = Integer(default_value=-1, help="Value to use").tag(config=True)
    infile = Path(
        help="input file name",
        exists=None,  # set to True to require existing, False for requiring non-existing
        directory_ok=False,
    ).tag(config=True)
    outfile = Path(
        help="output file name",
        exists=False, directory_ok=False
    ).tag(config=True)

    def __init__(self, config=None, parent=None, **kwargs):
        super().__init__(config=config, parent=parent, **kwargs)
        # components can have sub components, but these must have
        # then parent=self as argument and be assigned as member
        # so the full config can be received later
        self.subcompent = MyComponent(parent=self)

    @observe("outfile")
    def on_outfile_changed(self, change):
        self.log.warning("Outfile was changed to '{}'".format(change))


class TelescopeWiseComponent(TelescopeComponent):
    """ a component that contains parameters that are per-telescope configurable """

    param = FloatTelescopeParameter(
        help="Something configurable with telescope patterns", default_value=5.0
    ).tag(config=True)
[4]:
MyComponent()
[4]:
MyComponent

A Component that does stuff

value -1 Value to use (default: -1)
[5]:
AdvancedComponent(infile="test.foo", outfile="out.foo")
Outfile was changed to '{'name': 'outfile', 'old': traitlets.Undefined, 'new': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.foo'), 'owner': <__main__.AdvancedComponent object at 0x7f15b348ae50>, 'type': 'change'}'
[5]:
AdvancedComponent

An advanced technique

infile /home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/test.foo input file name (default: traitlets.Undefined)
outfile /home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.foo output file name (default: traitlets.Undefined)
value1 -1 Value to use (default: -1)

TelescopeComponents need to have a subarray given to them in order to work (since they need one to turn a TelescopeParameter into a concrete list of values for each telescope. Here we will give a dummy one:

[6]:
from ctapipe.instrument import SubarrayDescription, TelescopeDescription

subarray = SubarrayDescription(
    "Junk",
    tel_positions={1: (0.0, 0.0, 0.0) * u.m, 2: (1.0, 1.0, 0.0) * u.m},
    tel_descriptions={
        1: TelescopeDescription.from_name("LST", "LSTCam"),
        2: TelescopeDescription.from_name("MST", "NectarCam"),
    },
)
subarray.info()
Subarray : Junk
Num Tels : 2
Footprint: 0.00 km2

       Type       Count Tel IDs
----------------- ----- -------
MST_MST_NectarCam     1 2
   LST_LST_LSTCam     1 1
[7]:
TelescopeWiseComponent(subarray=subarray)
[7]:
TelescopeWiseComponent

a component that contains parameters that are per-telescope configurable

param [('type', '*', 5.0)] Something configurable with telescope patterns (default: traitlets.Undefined)

This TelescopeParameters can then be set using a list of patterns like:

component.param = [
    ("type", "LST*",3.0),
    ("type", "MST*", 2.0),
    (id, 25, 4.0)
]

These get translated into per-telescope-id values once the subarray is registered. After that one acccess the per-telescope id values via:

component.param.tel[tel_id]

Now create an executable Tool that contains the Components

[8]:
class MyTool(Tool):
    name="mytool"
    description="do some things and stuff"
    aliases = dict(
        infile='AdvancedComponent.infile',
        outfile='AdvancedComponent.outfile',
        iterations='MyTool.iterations'
    )

    # Which classes are registered for configuration
    classes = [MyComponent, AdvancedComponent, SecondaryMyComponent, TelescopeWiseComponent]

    # local configuration parameters
    iterations = Integer(5,help="Number of times to run",allow_none=False).tag(config=True)

    def setup(self):
        self.comp = MyComponent(parent=self)
        self.comp2 = SecondaryMyComponent(parent=self)
        self.comp3 = TelescopeWiseComponent(parent=self, subarray=subarray)
        self.advanced = AdvancedComponent(parent=self)


    def start(self):
        self.log.info("Performing {} iterations...".format(self.iterations))
        for ii in range(self.iterations):
            self.log.info("ITERATION {}".format(ii))
            self.comp.do_thing()
            self.comp2.do_thing()
            sleep(0.1)

    def finish(self):
        self.log.warning("Shutting down.")

Get Help info

The following allows you to print the help info within a Jupyter notebook, but this same inforamtion would be displayed if the user types:

mytool --help
[9]:
tool = MyTool()
tool
[9]:
MyTool

do some things and stuff

config_file None name of a configuration file with parameters to load in addition to command-line parameters (default: None)
iterations 5 Number of times to run (default: 5)
log_config {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': , 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': , 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 30}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 30, 'handlers': ['ctapipe-console'], 'propagate': False}}} (default: traitlets.Undefined)
log_datefmt %Y-%m-%d %H:%M:%S The date format used by logging formatters for %(asctime)s (default: %Y-%m-%d %H:%M:%S)
log_file None Filename for the log (default: None)
log_file_level INFO Logging Level for File Logging (default: INFO)
log_format [%(name)s]%(highlevel)s %(message)s The Logging format template (default: [%(name)s]%(highlevel)s %(message)s)
log_level 30 Set the log level by value or name. (default: 30)
provenance_log /home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log (default: traitlets.Undefined)
quiet False (default: False)
show_config False Instead of starting the Application, dump configuration to stdout (default: False)
show_config_json False Instead of starting the Application, dump configuration to stdout (as JSON) (default: False)

Components: MyTool, MyComponent, AdvancedComponent, SecondaryMyComponent, TelescopeWiseComponent

[10]:
tool.print_help()
do some things and stuff

Options
=======
The options below are convenience aliases to configurable class-options,
as listed in the "Equivalent to" description-line of the aliases.
To see all configurable class-options for some <cmd>, use:
    <cmd> --help-all

--debug
    Set log-level to debug, for the most verbose logging.
    Equivalent to: [--Application.log_level=10]
--show-config
    Show the application's configuration (human-readable format)
    Equivalent to: [--Application.show_config=True]
--show-config-json
    Show the application's configuration (json format)
    Equivalent to: [--Application.show_config_json=True]
-q, --quiet
    Disable console logging.
    Equivalent to: [--Tool.quiet=True]
-v, --verbose
    Set log level to DEBUG
    Equivalent to: [--Tool.log_level=DEBUG]
-c, --config=<Path>
    name of a configuration file with parameters to load in addition to command-
    line parameters
    Default: None
    Equivalent to: [--Tool.config_file]
--log-level=<Enum>
    Set the log level by value or name.
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 30
    Equivalent to: [--Tool.log_level]
-l, --log-file=<Path>
    Filename for the log
    Default: None
    Equivalent to: [--Tool.log_file]
--log-file-level=<Enum>
    Logging Level for File Logging
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 'INFO'
    Equivalent to: [--Tool.log_file_level]
--infile=<Path>
    input file name
    Default: traitlets.Undefined
    Equivalent to: [--AdvancedComponent.infile]
--outfile=<Path>
    output file name
    Default: traitlets.Undefined
    Equivalent to: [--AdvancedComponent.outfile]
--iterations=<Int>
    Number of times to run
    Default: 5
    Equivalent to: [--MyTool.iterations]

To see all available configurables, use `--help-all`.

The following is equivalant to the user typing mytool --help-all

[11]:
tool.print_help(classes=True)
do some things and stuff

Options
=======
The options below are convenience aliases to configurable class-options,
as listed in the "Equivalent to" description-line of the aliases.
To see all configurable class-options for some <cmd>, use:
    <cmd> --help-all

--debug
    Set log-level to debug, for the most verbose logging.
    Equivalent to: [--Application.log_level=10]
--show-config
    Show the application's configuration (human-readable format)
    Equivalent to: [--Application.show_config=True]
--show-config-json
    Show the application's configuration (json format)
    Equivalent to: [--Application.show_config_json=True]
-q, --quiet
    Disable console logging.
    Equivalent to: [--Tool.quiet=True]
-v, --verbose
    Set log level to DEBUG
    Equivalent to: [--Tool.log_level=DEBUG]
-c, --config=<Path>
    name of a configuration file with parameters to load in addition to command-
    line parameters
    Default: None
    Equivalent to: [--Tool.config_file]
--log-level=<Enum>
    Set the log level by value or name.
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 30
    Equivalent to: [--Tool.log_level]
-l, --log-file=<Path>
    Filename for the log
    Default: None
    Equivalent to: [--Tool.log_file]
--log-file-level=<Enum>
    Logging Level for File Logging
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 'INFO'
    Equivalent to: [--Tool.log_file_level]
--infile=<Path>
    input file name
    Default: traitlets.Undefined
    Equivalent to: [--AdvancedComponent.infile]
--outfile=<Path>
    output file name
    Default: traitlets.Undefined
    Equivalent to: [--AdvancedComponent.outfile]
--iterations=<Int>
    Number of times to run
    Default: 5
    Equivalent to: [--MyTool.iterations]

Class options
=============
The command-line option below sets the respective configurable class-parameter:
    --Class.parameter=value
This line is evaluated in Python, so simple expressions are allowed.
For instance, to set `C.a=[0,1,2]`, you may type this:
    --C.a='range(3)'

Application(SingletonConfigurable) options
------------------------------------------
--Application.log_datefmt=<Unicode>
    The date format used by logging formatters for %(asctime)s
    Default: '%Y-%m-%d %H:%M:%S'
--Application.log_format=<Unicode>
    The Logging format template
    Default: '[%(name)s]%(highlevel)s %(message)s'
--Application.log_level=<Enum>
    Set the log level by value or name.
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 30
--Application.show_config=<Bool>
    Instead of starting the Application, dump configuration to stdout
    Default: False
--Application.show_config_json=<Bool>
    Instead of starting the Application, dump configuration to stdout (as JSON)
    Default: False

Tool(Application) options
-------------------------
--Tool.config_file=<Path>
    name of a configuration file with parameters to load in addition to command-
    line parameters
    Default: None
--Tool.log_config=<key-1>=<value-1>...
    Default: {'version': 1, 'disable_existing_loggers': False, 'formatters...
--Tool.log_datefmt=<Unicode>
    The date format used by logging formatters for %(asctime)s
    Default: '%Y-%m-%d %H:%M:%S'
--Tool.log_file=<Path>
    Filename for the log
    Default: None
--Tool.log_file_level=<Enum>
    Logging Level for File Logging
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 'INFO'
--Tool.log_format=<Unicode>
    The Logging format template
    Default: '[%(name)s]%(highlevel)s %(message)s'
--Tool.log_level=<Enum>
    Set the log level by value or name.
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 30
--Tool.provenance_log=<Path>
    Default: traitlets.Undefined
--Tool.quiet=<Bool>
    Default: False
--Tool.show_config=<Bool>
    Instead of starting the Application, dump configuration to stdout
    Default: False
--Tool.show_config_json=<Bool>
    Instead of starting the Application, dump configuration to stdout (as JSON)
    Default: False

MyTool(Tool) options
--------------------
--MyTool.config_file=<Path>
    name of a configuration file with parameters to load in addition to command-
    line parameters
    Default: None
--MyTool.iterations=<Int>
    Number of times to run
    Default: 5
--MyTool.log_config=<key-1>=<value-1>...
    Default: {'version': 1, 'disable_existing_loggers': False, 'formatters...
--MyTool.log_datefmt=<Unicode>
    The date format used by logging formatters for %(asctime)s
    Default: '%Y-%m-%d %H:%M:%S'
--MyTool.log_file=<Path>
    Filename for the log
    Default: None
--MyTool.log_file_level=<Enum>
    Logging Level for File Logging
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 'INFO'
--MyTool.log_format=<Unicode>
    The Logging format template
    Default: '[%(name)s]%(highlevel)s %(message)s'
--MyTool.log_level=<Enum>
    Set the log level by value or name.
    Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
    Default: 30
--MyTool.provenance_log=<Path>
    Default: traitlets.Undefined
--MyTool.quiet=<Bool>
    Default: False
--MyTool.show_config=<Bool>
    Instead of starting the Application, dump configuration to stdout
    Default: False
--MyTool.show_config_json=<Bool>
    Instead of starting the Application, dump configuration to stdout (as JSON)
    Default: False

MyComponent(Component) options
------------------------------
--MyComponent.value=<Int>
    Value to use
    Default: -1

AdvancedComponent(Component) options
------------------------------------
--AdvancedComponent.infile=<Path>
    input file name
    Default: traitlets.Undefined
--AdvancedComponent.outfile=<Path>
    output file name
    Default: traitlets.Undefined
--AdvancedComponent.value1=<Int>
    Value to use
    Default: -1

SecondaryMyComponent(MyComponent) options
-----------------------------------------
--SecondaryMyComponent.value=<Int>
    Value to use
    Default: -1

TelescopeWiseComponent(TelescopeComponent) options
--------------------------------------------------
--TelescopeWiseComponent.param=<floattelescopeparameter-item-1>...
    Something configurable with telescope patterns
    Default: [('type', '*', 5.0)]

Run the tool

here we pass in argv since it is a Notebook, but if argv is not specified it’s read from sys.argv, so the following is the same as running:

mytool --log_level=INFO --infile gamma_test.simtel.gz --iterations=3

As Tools are intended to be exectutables, they are raising SystemExit on exit. Here, we use them to demonstrate how it would work, so we catch the SystemExit.

[12]:
try:
    tool.run(argv=['--infile',  str(GAMMA_FILE), '--outfile', 'out.csv'])
except SystemExit as e:
    assert e.code == 0, f'Tool returned with error status {e}'
Outfile was changed to '{'name': 'outfile', 'old': traitlets.Undefined, 'new': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'), 'owner': <__main__.AdvancedComponent object at 0x7f157806ffa0>, 'type': 'change'}'
2022-02-17 12:42:19,624 WARNING [ctapipe.mytool] (1473845174.finish): Shutting down.
[13]:
tool.log_format = "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s"


try:
    tool.run(argv=['--log-level','INFO','--infile', str(GAMMA_FILE), '--outfile', 'out.csv', '--iterations','3'])
except SystemExit as e:
    assert e.code == 0, f'Tool returned with error status {e}'
/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/traitlets/config/application.py:205: RuntimeWarning: No Handler found on <Logger ctapipe.mytool (WARNING)>, setting log_format will have no effect
  warnings.warn(
2022-02-17 12:42:20,023 INFO [ctapipe.mytool] (tool.initialize): ctapipe version 0.12.1.dev1+g71bebb8f
2022-02-17 12:42:20,023 INFO [ctapipe.mytool] (tool.run): Starting: mytool
Outfile was changed to '{'name': 'outfile', 'old': traitlets.Undefined, 'new': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'), 'owner': <__main__.AdvancedComponent object at 0x7f157806fd00>, 'type': 'change'}'
2022-02-17 12:42:20,041 INFO [ctapipe.mytool] (1473845174.start): Performing 3 iterations...
2022-02-17 12:42:20,042 INFO [ctapipe.mytool] (1473845174.start): ITERATION 0
2022-02-17 12:42:20,143 INFO [ctapipe.mytool] (1473845174.start): ITERATION 1
2022-02-17 12:42:20,244 INFO [ctapipe.mytool] (1473845174.start): ITERATION 2
2022-02-17 12:42:20,345 WARNING [ctapipe.mytool] (1473845174.finish): Shutting down.
2022-02-17 12:42:20,346 INFO [ctapipe.mytool] (tool.run): Finished: mytool
2022-02-17 12:42:20,349 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:20,350 INFO [ctapipe.mytool] (tool.write_provenance): Output:

here we change the log-level to DEBUG:

[14]:
try:
    tool.run(argv=['--log-level','DEBUG','--infile', str(GAMMA_FILE), '--outfile', 'out.csv'])
except SystemExit as e:
    assert e.code == 0, f'Tool returned with error status {e}'
2022-02-17 12:42:20,380 DEBUG [ctapipe.mytool] (application._config_changed): Config changed: {'AdvancedComponent': {'infile': '/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz', 'outfile': 'out.csv'}, 'attach_subarray': <LazyConfigValue {}>, 'MyTool': {'log_level': 'DEBUG', 'iterations': 3}}
2022-02-17 12:42:20,383 INFO [ctapipe.mytool] (tool.initialize): ctapipe version 0.12.1.dev1+g71bebb8f
2022-02-17 12:42:20,384 INFO [ctapipe.mytool] (tool.run): Starting: mytool
2022-02-17 12:42:20,397 DEBUG [ctapipe.core.provenance] (provenance.start_activity): started activity: mytool
2022-02-17 12:42:20,400 DEBUG [ctapipe.core.traits] (traits.attach_subarray): argument '*' matched: ['MST_MST_NectarCam', 'LST_LST_LSTCam']
Outfile was changed to '{'name': 'outfile', 'old': traitlets.Undefined, 'new': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'), 'owner': <__main__.AdvancedComponent object at 0x7f1573ff3460>, 'type': 'change'}'
2022-02-17 12:42:20,404 DEBUG [ctapipe.mytool] (tool.run): CONFIG: {'MyTool': {'config_file': None, 'iterations': 3, 'log_config': {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': <class 'ctapipe.core.logging.PlainFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': <class 'ctapipe.core.logging.ColoredFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 10}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 10, 'handlers': ['ctapipe-console'], 'propagate': False}}}, 'log_datefmt': '%Y-%m-%d %H:%M:%S', 'log_file': None, 'log_file_level': 'INFO', 'log_format': '%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s', 'log_level': 10, 'provenance_log': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log'), 'quiet': False, 'show_config': False, 'show_config_json': False, 'MyComponent': {'value': -1}, 'SecondaryMyComponent': {'value': -1}, 'TelescopeWiseComponent': {'param': [('type', '*', 5.0)]}, 'AdvancedComponent': {'infile': PosixPath('/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz'), 'outfile': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'), 'value1': -1, 'MyComponent': {'value': -1}}}}
2022-02-17 12:42:20,406 INFO [ctapipe.mytool] (1473845174.start): Performing 3 iterations...
2022-02-17 12:42:20,407 INFO [ctapipe.mytool] (1473845174.start): ITERATION 0
2022-02-17 12:42:20,509 INFO [ctapipe.mytool] (1473845174.start): ITERATION 1
2022-02-17 12:42:20,609 INFO [ctapipe.mytool] (1473845174.start): ITERATION 2
2022-02-17 12:42:20,710 WARNING [ctapipe.mytool] (1473845174.finish): Shutting down.
2022-02-17 12:42:20,711 INFO [ctapipe.mytool] (tool.run): Finished: mytool
2022-02-17 12:42:20,714 DEBUG [ctapipe.core.provenance] (provenance.finish_activity): finished activity: mytool
2022-02-17 12:42:20,716 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:20,717 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:20,717 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:20,722 DEBUG [ctapipe.mytool] (tool.write_provenance): PROVENANCE: '[
   {
      "activity_name": "mytool",
      "activity_uuid": "deb3d6a0-5349-4a87-879e-9fed062aa087",
      "start": {
         "time_utc": "2022-02-17T12:42:19.108"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:19.625"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:19.119"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 5,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "[%(name)s]%(highlevel)s %(message)s",
            "log_level": 30,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.0086166666667431
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "f46d727a-f82f-49e4-9745-66a9d63d0b52",
      "start": {
         "time_utc": "2022-02-17T12:42:20.026"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:20.347"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:20.036"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 3,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s",
            "log_level": 20,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.005349999999975097
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "a3ccb8db-e2e8-409f-b653-413e7fcf92ab",
      "start": {
         "time_utc": "2022-02-17T12:42:20.385"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:20.712"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:20.397"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 3,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s",
            "log_level": 10,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.005449999999935784
   }
]'
2022-02-17 12:42:20,728 DEBUG [ctapipe.mytool] (application.exit): Exiting application: mytool

you can also set parameters directly in the class, rather than using the argument/configfile parser. This is useful if you are calling the Tool from a script rather than the command-line

[15]:
tool.iterations = 1
tool.log_level = 0

try:
    tool.run(['--infile', str(GAMMA_FILE), '--outfile', 'out.csv'])
except SystemExit as e:
    assert e.code == 0, f'Tool returned with error status {e}'
2022-02-17 12:42:20,744 DEBUG [ctapipe.mytool] (application._config_changed): Config changed: {'AdvancedComponent': {'infile': '/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz', 'outfile': 'out.csv'}, 'attach_subarray': <LazyConfigValue {}>, 'MyTool': {'log_level': 'DEBUG', 'iterations': 3}}
2022-02-17 12:42:20,747 DEBUG [ctapipe.mytool] (application._config_changed): Config changed: {'AdvancedComponent': {'infile': '/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz', 'outfile': 'out.csv'}, 'attach_subarray': <LazyConfigValue {}>, 'MyTool': {'log_level': 'DEBUG', 'iterations': 3}}
2022-02-17 12:42:20,749 INFO [ctapipe.mytool] (tool.initialize): ctapipe version 0.12.1.dev1+g71bebb8f
2022-02-17 12:42:20,750 INFO [ctapipe.mytool] (tool.run): Starting: mytool
2022-02-17 12:42:20,777 DEBUG [ctapipe.core.provenance] (provenance.start_activity): started activity: mytool
2022-02-17 12:42:20,780 DEBUG [ctapipe.core.traits] (traits.attach_subarray): argument '*' matched: ['MST_MST_NectarCam', 'LST_LST_LSTCam']
Outfile was changed to '{'name': 'outfile', 'old': traitlets.Undefined, 'new': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'), 'owner': <__main__.AdvancedComponent object at 0x7f157806fe50>, 'type': 'change'}'
2022-02-17 12:42:20,783 DEBUG [ctapipe.mytool] (tool.run): CONFIG: {'MyTool': {'config_file': None, 'iterations': 3, 'log_config': {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': <class 'ctapipe.core.logging.PlainFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': <class 'ctapipe.core.logging.ColoredFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 10}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 10, 'handlers': ['ctapipe-console'], 'propagate': False}}}, 'log_datefmt': '%Y-%m-%d %H:%M:%S', 'log_file': None, 'log_file_level': 'INFO', 'log_format': '%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s', 'log_level': 10, 'provenance_log': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log'), 'quiet': False, 'show_config': False, 'show_config_json': False, 'MyComponent': {'value': -1}, 'SecondaryMyComponent': {'value': -1}, 'TelescopeWiseComponent': {'param': [('type', '*', 5.0)]}, 'AdvancedComponent': {'infile': PosixPath('/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz'), 'outfile': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'), 'value1': -1, 'MyComponent': {'value': -1}}}}
2022-02-17 12:42:20,785 INFO [ctapipe.mytool] (1473845174.start): Performing 3 iterations...
2022-02-17 12:42:20,787 INFO [ctapipe.mytool] (1473845174.start): ITERATION 0
2022-02-17 12:42:20,887 INFO [ctapipe.mytool] (1473845174.start): ITERATION 1
2022-02-17 12:42:20,988 INFO [ctapipe.mytool] (1473845174.start): ITERATION 2
2022-02-17 12:42:21,089 WARNING [ctapipe.mytool] (1473845174.finish): Shutting down.
2022-02-17 12:42:21,090 INFO [ctapipe.mytool] (tool.run): Finished: mytool
2022-02-17 12:42:21,093 DEBUG [ctapipe.core.provenance] (provenance.finish_activity): finished activity: mytool
2022-02-17 12:42:21,095 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,095 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,096 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,097 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,103 DEBUG [ctapipe.mytool] (tool.write_provenance): PROVENANCE: '[
   {
      "activity_name": "mytool",
      "activity_uuid": "deb3d6a0-5349-4a87-879e-9fed062aa087",
      "start": {
         "time_utc": "2022-02-17T12:42:19.108"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:19.625"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:19.119"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 5,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "[%(name)s]%(highlevel)s %(message)s",
            "log_level": 30,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.0086166666667431
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "f46d727a-f82f-49e4-9745-66a9d63d0b52",
      "start": {
         "time_utc": "2022-02-17T12:42:20.026"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:20.347"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:20.036"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 3,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s",
            "log_level": 20,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.005349999999975097
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "a3ccb8db-e2e8-409f-b653-413e7fcf92ab",
      "start": {
         "time_utc": "2022-02-17T12:42:20.385"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:20.712"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:20.397"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 3,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s",
            "log_level": 10,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.005449999999935784
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "7f9ad11d-0d46-4633-8b17-aaf402f15043",
      "start": {
         "time_utc": "2022-02-17T12:42:20.751"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:21.091"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:20.777"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 3,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s",
            "log_level": 10,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.005666666666783726
   }
]'
2022-02-17 12:42:21,114 DEBUG [ctapipe.mytool] (application.exit): Exiting application: mytool

see what happens when a value is set that is not of the correct type:

[16]:
try:
    tool.iterations = "badval"
except TraitError as E:
    print("bad value:",E)
except SystemExit as e:
    assert e.code == 0, f'Tool returned with error status {e}'
bad value: The 'iterations' trait of a MyTool instance expected an int, not the str 'badval'.

Example of what happens when you change a parameter that is being “observed” in a class. It’s handler is called:

[17]:
tool.advanced.outfile = "Another.txt"
Outfile was changed to '{'name': 'outfile', 'old': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'), 'new': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/Another.txt'), 'owner': <__main__.AdvancedComponent object at 0x7f157806fe50>, 'type': 'change'}'

we see that the handler for outfile was called, and it receive a change dict that shows the old and new values.

create a tool using a config file:

[18]:
tool2 = MyTool()
[19]:
try:
    tool2.run(argv=['--config', 'Tools.json'])
except SystemExit as e:
    assert e.code == 0, f'Tool returned with error status {e}'
2022-02-17 12:42:21,150 INFO [ctapipe.mytool] (tool.initialize): ctapipe version 0.12.1.dev1+g71bebb8f
2022-02-17 12:42:21,150 INFO [ctapipe.mytool] (tool.run): Starting: mytool
2022-02-17 12:42:21,164 DEBUG [ctapipe.core.provenance] (provenance.start_activity): started activity: mytool
2022-02-17 12:42:21,167 DEBUG [ctapipe.core.traits] (traits.attach_subarray): argument '*' matched: ['MST_MST_NectarCam', 'LST_LST_LSTCam']
Outfile was changed to '{'name': 'outfile', 'old': traitlets.Undefined, 'new': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/foo.txt'), 'owner': <__main__.AdvancedComponent object at 0x7f1573ff3f40>, 'type': 'change'}'
2022-02-17 12:42:21,170 DEBUG [ctapipe.mytool] (tool.run): CONFIG: {'MyTool': {'config_file': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/Tools.json'), 'iterations': 5, 'log_config': {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': <class 'ctapipe.core.logging.PlainFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': <class 'ctapipe.core.logging.ColoredFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 10}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 10, 'handlers': ['ctapipe-console'], 'propagate': False}}}, 'log_datefmt': '%Y-%m-%d %H:%M:%S', 'log_file': None, 'log_file_level': 'INFO', 'log_format': '[%(name)s]%(highlevel)s %(message)s', 'log_level': 10, 'provenance_log': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log'), 'quiet': False, 'show_config': False, 'show_config_json': False, 'MyComponent': {'value': -1}, 'SecondaryMyComponent': {'value': -1}, 'TelescopeWiseComponent': {'param': [('type', '*', 5.0)]}, 'AdvancedComponent': {'infile': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/something.txt'), 'outfile': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/foo.txt'), 'value1': -1, 'MyComponent': {'value': -1}}}}
2022-02-17 12:42:21,173 INFO [ctapipe.mytool] (1473845174.start): Performing 5 iterations...
2022-02-17 12:42:21,173 INFO [ctapipe.mytool] (1473845174.start): ITERATION 0
2022-02-17 12:42:21,275 INFO [ctapipe.mytool] (1473845174.start): ITERATION 1
2022-02-17 12:42:21,375 INFO [ctapipe.mytool] (1473845174.start): ITERATION 2
2022-02-17 12:42:21,476 INFO [ctapipe.mytool] (1473845174.start): ITERATION 3
2022-02-17 12:42:21,577 INFO [ctapipe.mytool] (1473845174.start): ITERATION 4
2022-02-17 12:42:21,678 WARNING [ctapipe.mytool] (1473845174.finish): Shutting down.
2022-02-17 12:42:21,679 INFO [ctapipe.mytool] (tool.run): Finished: mytool
2022-02-17 12:42:21,683 DEBUG [ctapipe.core.provenance] (provenance.finish_activity): finished activity: mytool
2022-02-17 12:42:21,683 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,686 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,686 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,687 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,687 INFO [ctapipe.mytool] (tool.write_provenance): Output:
2022-02-17 12:42:21,695 DEBUG [ctapipe.mytool] (tool.write_provenance): PROVENANCE: '[
   {
      "activity_name": "mytool",
      "activity_uuid": "deb3d6a0-5349-4a87-879e-9fed062aa087",
      "start": {
         "time_utc": "2022-02-17T12:42:19.108"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:19.625"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:19.119"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 5,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "[%(name)s]%(highlevel)s %(message)s",
            "log_level": 30,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.0086166666667431
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "f46d727a-f82f-49e4-9745-66a9d63d0b52",
      "start": {
         "time_utc": "2022-02-17T12:42:20.026"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:20.347"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:20.036"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 3,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s",
            "log_level": 20,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.005349999999975097
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "a3ccb8db-e2e8-409f-b653-413e7fcf92ab",
      "start": {
         "time_utc": "2022-02-17T12:42:20.385"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:20.712"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:20.397"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 3,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s",
            "log_level": 10,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.005449999999935784
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "7f9ad11d-0d46-4633-8b17-aaf402f15043",
      "start": {
         "time_utc": "2022-02-17T12:42:20.751"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:21.091"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:20.777"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": null,
            "iterations": 3,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s",
            "log_level": 10,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.005666666666783726
   },
   {
      "activity_name": "mytool",
      "activity_uuid": "5491c5e3-ba2d-44d4-9b82-6f957717a486",
      "start": {
         "time_utc": "2022-02-17T12:42:21.151"
      },
      "stop": {
         "time_utc": "2022-02-17T12:42:21.681"
      },
      "system": {
         "ctapipe_version": "0.12.1.dev1+g71bebb8f",
         "ctapipe_resources_version": "not installed",
         "eventio_version": "1.5.2",
         "ctapipe_svc_path": null,
         "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin/python",
         "platform": {
            "architecture_bits": "64bit",
            "architecture_linkage": "ELF",
            "machine": "x86_64",
            "processor": "x86_64",
            "node": "build-16116316-project-702899-ctapipe",
            "version": "#20~20.04.1-Ubuntu SMP Tue Sep 21 10:40:39 UTC 2021",
            "system": "Linux",
            "release": "5.11.0-1019-aws",
            "libcver": [
               "glibc",
               "2.27"
            ],
            "num_cpus": 2,
            "boot_time": "2022-02-17T10:36:15.000"
         },
         "python": {
            "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
            "version": [
               "3",
               "8",
               "6"
            ],
            "compiler": "GCC 7.5.0",
            "implementation": "CPython",
            "packages": [
               {
                  "name": "Babel",
                  "version": "2.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Jinja2",
                  "version": "3.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "MarkupSafe",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pillow",
                  "version": "9.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "PyYAML",
                  "version": "6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Pygments",
                  "version": "2.11.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "QtPy",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Send2Trash",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "Sphinx",
                  "version": "3.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "alabaster",
                  "version": "0.7.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi",
                  "version": "21.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "argon2-cffi-bindings",
                  "version": "21.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "astropy",
                  "version": "4.3.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "asttokens",
                  "version": "2.0.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "attrs",
                  "version": "21.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "backcall",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "black",
                  "version": "22.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bleach",
                  "version": "4.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "bokeh",
                  "version": "1.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "certifi",
                  "version": "2021.10.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cffi",
                  "version": "1.15.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "charset-normalizer",
                  "version": "2.0.12",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "click",
                  "version": "8.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "commonmark",
                  "version": "0.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "corsikaio",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ctapipe",
                  "version": "0.12.1.dev1+g71bebb8f",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "cycler",
                  "version": "0.11.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "debugpy",
                  "version": "1.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "decorator",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "defusedxml",
                  "version": "0.7.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "docutils",
                  "version": "0.16",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "entrypoints",
                  "version": "0.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "eventio",
                  "version": "1.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "executing",
                  "version": "0.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "fonttools",
                  "version": "4.29.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "future",
                  "version": "0.18.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "graphviz",
                  "version": "0.19.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "h5py",
                  "version": "3.6.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "idna",
                  "version": "3.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "imagesize",
                  "version": "1.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "iminuit",
                  "version": "2.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-metadata",
                  "version": "4.11.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "importlib-resources",
                  "version": "5.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipykernel",
                  "version": "6.9.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython",
                  "version": "8.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipython-genutils",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ipywidgets",
                  "version": "7.6.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jedi",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "joblib",
                  "version": "1.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jsonschema",
                  "version": "4.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-client",
                  "version": "7.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-console",
                  "version": "6.4.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyter-core",
                  "version": "4.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-pygments",
                  "version": "0.1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "jupyterlab-widgets",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "kiwisolver",
                  "version": "1.3.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "llvmlite",
                  "version": "0.38.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib",
                  "version": "3.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "matplotlib-inline",
                  "version": "0.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mistune",
                  "version": "0.8.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mock",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "mypy-extensions",
                  "version": "0.4.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbclient",
                  "version": "0.5.11",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbconvert",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbformat",
                  "version": "5.1.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nbsphinx",
                  "version": "0.8.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "nest-asyncio",
                  "version": "1.5.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "notebook",
                  "version": "6.4.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numba",
                  "version": "0.55.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numexpr",
                  "version": "2.8.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpy",
                  "version": "1.21.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "numpydoc",
                  "version": "1.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "packaging",
                  "version": "21.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandas",
                  "version": "1.4.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pandocfilters",
                  "version": "1.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "parso",
                  "version": "0.8.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pathspec",
                  "version": "0.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pexpect",
                  "version": "4.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pickleshare",
                  "version": "0.7.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pip",
                  "version": "22.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "platformdirs",
                  "version": "2.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prometheus-client",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "prompt-toolkit",
                  "version": "3.0.28",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "psutil",
                  "version": "5.9.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "ptyprocess",
                  "version": "0.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pure-eval",
                  "version": "0.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pycparser",
                  "version": "2.21",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyerfa",
                  "version": "2.0.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyparsing",
                  "version": "3.0.7",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyrsistent",
                  "version": "0.18.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "python-dateutil",
                  "version": "2.8.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pytz",
                  "version": "2021.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "pyzmq",
                  "version": "22.3.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "qtconsole",
                  "version": "5.2.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "readthedocs-sphinx-ext",
                  "version": "2.1.4",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "recommonmark",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "requests",
                  "version": "2.27.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scikit-learn",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "scipy",
                  "version": "1.8.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools",
                  "version": "60.9.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "setuptools-scm",
                  "version": "6.4.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "six",
                  "version": "1.16.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "snowballstemmer",
                  "version": "2.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-automodapi",
                  "version": "0.14.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinx-rtd-theme",
                  "version": "1.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-applehelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-devhelp",
                  "version": "1.0.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-htmlhelp",
                  "version": "2.0.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-jsmath",
                  "version": "1.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-qthelp",
                  "version": "1.0.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "sphinxcontrib-serializinghtml",
                  "version": "1.1.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "stack-data",
                  "version": "0.2.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tables",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "terminado",
                  "version": "0.13.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "testpath",
                  "version": "0.5.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "threadpoolctl",
                  "version": "3.1.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tomli",
                  "version": "2.0.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tornado",
                  "version": "6.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "tqdm",
                  "version": "4.62.3",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "traitlets",
                  "version": "5.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "typing-extensions",
                  "version": "4.1.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "urllib3",
                  "version": "1.26.8",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wcwidth",
                  "version": "0.2.5",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "webencodings",
                  "version": "0.5.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "wheel",
                  "version": "0.37.1",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "widgetsnbextension",
                  "version": "3.5.2",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zipp",
                  "version": "3.7.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               },
               {
                  "name": "zstandard",
                  "version": "0.17.0",
                  "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages"
               }
            ]
         },
         "environment": {
            "CONDA_DEFAULT_ENV": null,
            "CONDA_PREFIX": null,
            "CONDA_PYTHON_EXE": null,
            "CONDA_EXE": null,
            "CONDA_PROMPT_MODIFIER": null,
            "CONDA_SHLVL": null,
            "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
            "LD_LIBRARY_PATH": null,
            "DYLD_LIBRARY_PATH": null,
            "USER": null,
            "HOME": "/home/docs",
            "SHELL": null
         },
         "arguments": [
            "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.12.0-rtd/lib/python3.8/site-packages/ipykernel_launcher.py",
            "-f",
            "/tmp/tmpnz022yh6.json",
            "--HistoryManager.hist_file=:memory:"
         ],
         "start_time_utc": "2022-02-17T12:42:21.164"
      },
      "input": [],
      "output": [],
      "config": {
         "MyTool": {
            "config_file": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/Tools.json",
            "iterations": 5,
            "log_config": {
               "version": 1,
               "disable_existing_loggers": false,
               "formatters": {
                  "file": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  },
                  "console": {
                     "()": null,
                     "fmt": "%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s"
                  }
               },
               "handlers": {
                  "ctapipe-console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": 10
                  },
                  "console": {
                     "class": "logging.StreamHandler",
                     "formatter": "console",
                     "stream": "ext://sys.stderr",
                     "level": "NOTSET"
                  }
               },
               "loggers": {
                  "ctapipe": {
                     "level": 10,
                     "handlers": [
                        "ctapipe-console"
                     ],
                     "propagate": false
                  }
               }
            },
            "log_datefmt": "%Y-%m-%d %H:%M:%S",
            "log_file": null,
            "log_file_level": "INFO",
            "log_format": "[%(name)s]%(highlevel)s %(message)s",
            "log_level": 10,
            "provenance_log": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log",
            "quiet": false,
            "show_config": false,
            "show_config_json": false,
            "MyComponent": {
               "value": -1
            },
            "SecondaryMyComponent": {
               "value": -1
            },
            "TelescopeWiseComponent": {
               "param": [
                  [
                     "type",
                     "*",
                     5.0
                  ]
               ]
            },
            "AdvancedComponent": {
               "infile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/something.txt",
               "outfile": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/foo.txt",
               "value1": -1,
               "MyComponent": {
                  "value": -1
               }
            }
         }
      },
      "status": "completed",
      "duration_min": 0.008833333333271298
   }
]'
2022-02-17 12:42:21,704 DEBUG [ctapipe.mytool] (application.exit): Exiting application: mytool
[20]:
print(tool2.advanced.infile)
/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/something.txt
[21]:
print(tool2.config)
{'MyTool': {'config_file': 'Tools.json', 'log_level': 'DEBUG'}, 'AdvancedComponent': {'infile': 'something.txt', 'outfile': 'foo.txt'}, 'attach_subarray': <LazyConfigValue {}>}
[22]:
tool2.is_setup
[22]:
True
[23]:
tool3 = MyTool()
[24]:
tool3.is_setup
[24]:
False
[25]:
tool3.initialize(argv=[])
[26]:
tool3.is_setup
[26]:
False
[27]:
tool3
[27]:
MyTool

do some things and stuff

config_file None name of a configuration file with parameters to load in addition to command-line parameters (default: None)
iterations 5 Number of times to run (default: 5)
log_config {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': , 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': , 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 30}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 30, 'handlers': ['ctapipe-console'], 'propagate': False}}} (default: traitlets.Undefined)
log_datefmt %Y-%m-%d %H:%M:%S The date format used by logging formatters for %(asctime)s (default: %Y-%m-%d %H:%M:%S)
log_file None Filename for the log (default: None)
log_file_level INFO Logging Level for File Logging (default: INFO)
log_format [%(name)s]%(highlevel)s %(message)s The Logging format template (default: [%(name)s]%(highlevel)s %(message)s)
log_level 30 Set the log level by value or name. (default: 30)
provenance_log /home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log (default: traitlets.Undefined)
quiet False (default: False)
show_config False Instead of starting the Application, dump configuration to stdout (default: False)
show_config_json False Instead of starting the Application, dump configuration to stdout (as JSON) (default: False)

Components: MyTool, MyComponent, AdvancedComponent, SecondaryMyComponent, TelescopeWiseComponent

[28]:
tool.setup()
tool
Outfile was changed to '{'name': 'outfile', 'old': traitlets.Undefined, 'new': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'), 'owner': <__main__.AdvancedComponent object at 0x7f157806f1f0>, 'type': 'change'}'
[28]:
MyTool

do some things and stuff

config_file None name of a configuration file with parameters to load in addition to command-line parameters (default: None)
iterations 3 Number of times to run (default: 5)
log_config {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': , 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': , 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 30}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 30, 'handlers': ['ctapipe-console'], 'propagate': False}}} (default: traitlets.Undefined)
log_datefmt %Y-%m-%d %H:%M:%S The date format used by logging formatters for %(asctime)s (default: %Y-%m-%d %H:%M:%S)
log_file None Filename for the log (default: None)
log_file_level INFO Logging Level for File Logging (default: INFO)
log_format %(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s The Logging format template (default: [%(name)s]%(highlevel)s %(message)s)
log_level 10 Set the log level by value or name. (default: 30)
provenance_log /home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log (default: traitlets.Undefined)
quiet False (default: False)
show_config False Instead of starting the Application, dump configuration to stdout (default: False)
show_config_json False Instead of starting the Application, dump configuration to stdout (as JSON) (default: False)

Components: MyTool, MyComponent, AdvancedComponent, SecondaryMyComponent, TelescopeWiseComponent

[29]:
tool.comp2
[29]:
SecondaryMyComponent

Undocumented!

value -1 Value to use (default: -1)

Getting the configuration of an instance

[30]:
tool.get_current_config()
[30]:
{'MyTool': {'config_file': None,
  'iterations': 3,
  'log_config': {'version': 1,
   'disable_existing_loggers': False,
   'formatters': {'file': {'()': ctapipe.core.logging.PlainFormatter,
     'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'},
    'console': {'()': ctapipe.core.logging.ColoredFormatter,
     'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}},
   'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler',
     'formatter': 'console',
     'stream': 'ext://sys.stderr',
     'level': 30},
    'console': {'class': 'logging.StreamHandler',
     'formatter': 'console',
     'stream': 'ext://sys.stderr',
     'level': 'NOTSET'}},
   'loggers': {'ctapipe': {'level': 30,
     'handlers': ['ctapipe-console'],
     'propagate': False}}},
  'log_datefmt': '%Y-%m-%d %H:%M:%S',
  'log_file': None,
  'log_file_level': 'INFO',
  'log_format': '%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s',
  'log_level': 10,
  'provenance_log': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log'),
  'quiet': False,
  'show_config': False,
  'show_config_json': False,
  'MyComponent': {'value': -1},
  'SecondaryMyComponent': {'value': -1},
  'TelescopeWiseComponent': {'param': TelescopePatternList([('type',
                          '*',
                          5.0)])},
  'AdvancedComponent': {'infile': PosixPath('/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz'),
   'outfile': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'),
   'value1': -1,
   'MyComponent': {'value': -1}}}}
[31]:
tool.iterations = 12
tool.get_current_config()
[31]:
{'MyTool': {'config_file': None,
  'iterations': 12,
  'log_config': {'version': 1,
   'disable_existing_loggers': False,
   'formatters': {'file': {'()': ctapipe.core.logging.PlainFormatter,
     'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'},
    'console': {'()': ctapipe.core.logging.ColoredFormatter,
     'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}},
   'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler',
     'formatter': 'console',
     'stream': 'ext://sys.stderr',
     'level': 30},
    'console': {'class': 'logging.StreamHandler',
     'formatter': 'console',
     'stream': 'ext://sys.stderr',
     'level': 'NOTSET'}},
   'loggers': {'ctapipe': {'level': 30,
     'handlers': ['ctapipe-console'],
     'propagate': False}}},
  'log_datefmt': '%Y-%m-%d %H:%M:%S',
  'log_file': None,
  'log_file_level': 'INFO',
  'log_format': '%(asctime)s : %(levelname)s [%(name)s %(funcName)s] %(message)s',
  'log_level': 10,
  'provenance_log': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/mytool.provenance.log'),
  'quiet': False,
  'show_config': False,
  'show_config_json': False,
  'MyComponent': {'value': -1},
  'SecondaryMyComponent': {'value': -1},
  'TelescopeWiseComponent': {'param': TelescopePatternList([('type',
                          '*',
                          5.0)])},
  'AdvancedComponent': {'infile': PosixPath('/home/docs/.cache/ctapipe/cccta-dataserver.in2p3.fr/data/ctapipe-extra/v0.3.3/gamma_test.simtel.gz'),
   'outfile': PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.12.0-rtd/docs/examples/out.csv'),
   'value1': -1,
   'MyComponent': {'value': -1}}}}

Writing a Sample Config File

[32]:
print(tool.generate_config_file())
# Configuration file for mytool.

#------------------------------------------------------------------------------
# Application(SingletonConfigurable) configuration
#------------------------------------------------------------------------------
## This is an application.

## The date format used by logging formatters for %(asctime)s
#  Default: '%Y-%m-%d %H:%M:%S'
# c.Application.log_datefmt = '%Y-%m-%d %H:%M:%S'

## The Logging format template
#  Default: '[%(name)s]%(highlevel)s %(message)s'
# c.Application.log_format = '[%(name)s]%(highlevel)s %(message)s'

## Set the log level by value or name.
#  Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
#  Default: 30
# c.Application.log_level = 30

## Instead of starting the Application, dump configuration to stdout
#  Default: False
# c.Application.show_config = False

## Instead of starting the Application, dump configuration to stdout (as JSON)
#  Default: False
# c.Application.show_config_json = False

#------------------------------------------------------------------------------
# Tool(Application) configuration
#------------------------------------------------------------------------------
## This is an application.

## name of a configuration file with parameters to load in addition to command-
#  line parameters
#  Default: None
# c.Tool.config_file = None

#  Default: {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': <class 'ctapipe.core.logging.PlainFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': <class 'ctapipe.core.logging.ColoredFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 30}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 30, 'handlers': ['ctapipe-console'], 'propagate': False}}}
# c.Tool.log_config = {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': <class 'ctapipe.core.logging.PlainFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': <class 'ctapipe.core.logging.ColoredFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 30}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 30, 'handlers': ['ctapipe-console'], 'propagate': False}}}

## The date format used by logging formatters for %(asctime)s
#  See also: Application.log_datefmt
# c.Tool.log_datefmt = '%Y-%m-%d %H:%M:%S'

## Filename for the log
#  Default: None
# c.Tool.log_file = None

## Logging Level for File Logging
#  Choices: any of [0, 10, 20, 30, 40, 50, 'DEBUG', 'INFO', 'WARN', 'ERROR', 'CRITICAL']
#  Default: 'INFO'
# c.Tool.log_file_level = 'INFO'

## The Logging format template
#  See also: Application.log_format
# c.Tool.log_format = '[%(name)s]%(highlevel)s %(message)s'

## Set the log level by value or name.
#  See also: Application.log_level
# c.Tool.log_level = 30

#  Default: traitlets.Undefined
# c.Tool.provenance_log = traitlets.Undefined

#  Default: False
# c.Tool.quiet = False

## Instead of starting the Application, dump configuration to stdout
#  See also: Application.show_config
# c.Tool.show_config = False

## Instead of starting the Application, dump configuration to stdout (as JSON)
#  See also: Application.show_config_json
# c.Tool.show_config_json = False

#------------------------------------------------------------------------------
# MyTool(Tool) configuration
#------------------------------------------------------------------------------
## name of a configuration file with parameters to load in addition to command-
#  line parameters
#  See also: Tool.config_file
# c.MyTool.config_file = None

## Number of times to run
#  Default: 5
# c.MyTool.iterations = 5

#  See also: Tool.log_config
# c.MyTool.log_config = {'version': 1, 'disable_existing_loggers': False, 'formatters': {'file': {'()': <class 'ctapipe.core.logging.PlainFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}, 'console': {'()': <class 'ctapipe.core.logging.ColoredFormatter'>, 'fmt': '%(asctime)s %(levelname)s [%(name)s] (%(module)s.%(funcName)s): %(message)s'}}, 'handlers': {'ctapipe-console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 30}, 'console': {'class': 'logging.StreamHandler', 'formatter': 'console', 'stream': 'ext://sys.stderr', 'level': 'NOTSET'}}, 'loggers': {'ctapipe': {'level': 30, 'handlers': ['ctapipe-console'], 'propagate': False}}}

## The date format used by logging formatters for %(asctime)s
#  See also: Application.log_datefmt
# c.MyTool.log_datefmt = '%Y-%m-%d %H:%M:%S'

## Filename for the log
#  See also: Tool.log_file
# c.MyTool.log_file = None

## Logging Level for File Logging
#  See also: Tool.log_file_level
# c.MyTool.log_file_level = 'INFO'

## The Logging format template
#  See also: Application.log_format
# c.MyTool.log_format = '[%(name)s]%(highlevel)s %(message)s'

## Set the log level by value or name.
#  See also: Application.log_level
# c.MyTool.log_level = 30

#  See also: Tool.provenance_log
# c.MyTool.provenance_log = traitlets.Undefined

#  See also: Tool.quiet
# c.MyTool.quiet = False

## Instead of starting the Application, dump configuration to stdout
#  See also: Application.show_config
# c.MyTool.show_config = False

## Instead of starting the Application, dump configuration to stdout (as JSON)
#  See also: Application.show_config_json
# c.MyTool.show_config_json = False

#------------------------------------------------------------------------------
# MyComponent(Component) configuration
#------------------------------------------------------------------------------
## A Component that does stuff

## Value to use
#  Default: -1
# c.MyComponent.value = -1

#------------------------------------------------------------------------------
# AdvancedComponent(Component) configuration
#------------------------------------------------------------------------------
## An advanced technique

## input file name
#  Default: traitlets.Undefined
# c.AdvancedComponent.infile = traitlets.Undefined

## output file name
#  Default: traitlets.Undefined
# c.AdvancedComponent.outfile = traitlets.Undefined

## Value to use
#  Default: -1
# c.AdvancedComponent.value1 = -1

#------------------------------------------------------------------------------
# SecondaryMyComponent(MyComponent) configuration
#------------------------------------------------------------------------------
## Value to use
#  See also: MyComponent.value
# c.SecondaryMyComponent.value = -1

#------------------------------------------------------------------------------
# TelescopeWiseComponent(TelescopeComponent) configuration
#------------------------------------------------------------------------------
## a component that contains parameters that are per-telescope configurable

## Something configurable with telescope patterns
#  Default: [('type', '*', 5.0)]
# c.TelescopeWiseComponent.param = [('type', '*', 5.0)]

[ ]: