Skip to content

Commit

Permalink
Add entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
ladinesa committed Aug 12, 2024
1 parent 1823ae3 commit d3de7ee
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion runschema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
from . import calculation, method, run, system
from nomad.config.models.plugins import SchemaPackageEntryPoint


class RunSchemaEntryPoint(SchemaPackageEntryPoint):
def load(self):
from .run import m_package

return m_package


run = RunSchemaEntryPoint(
name='RunSchema', description='Schema definitions for the nomad run section.'
)

0 comments on commit d3de7ee

Please sign in to comment.