File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ rompy = "rompy.cli:main"
69
69
"netcdf_fcstack" = " rompy.intake:NetCDFFCStackSource"
70
70
71
71
[project .entry-points ."rompy .config" ]
72
+ base = " rompy.core.config:BaseConfig"
72
73
swan = " rompy.swan.config:SwanConfig"
73
74
swan_components = " rompy.swan.config:SwanConfigComponents"
74
75
schism = " rompy.schism.config:SchismCSIROConfig"
Original file line number Diff line number Diff line change 16
16
logger = logging .getLogger (__name__ )
17
17
18
18
19
- # Accepted config types defined by the BaseConfig and any other config types
20
- # defined in the entry points of the rompy.config group
21
- config_eps = entry_points (group = "rompy.config" )
22
- CONFIG_TYPES = (BaseConfig ,) + tuple (eps .load () for eps in config_eps )
19
+ # Accepted config types are defined in the entry points of the rompy.config group
20
+ CONFIG_TYPES = tuple (eps .load () for eps in entry_points (group = "rompy.config" ))
23
21
24
22
25
23
class ModelRun (RompyBaseModel ):
You can’t perform that action at this time.
0 commit comments