Skip to content

Commit

Permalink
fixing owritting schema variable in the main pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
amirgolp committed Oct 25, 2024
1 parent f7074b1 commit a442fe5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ where = ["src"]
[project.entry-points.'nomad.plugin']
elabftwparser = "nomad_external_eln_integrations.parsers:elabftw_parser_entry_point"
chemotionparser = "nomad_external_eln_integrations.parsers:chemotion_parser_entry_point"
labfolderschema = "nomad_external_eln_integrations.schema_packages.labfolder:schema"
elabftwschema = "nomad_external_eln_integrations.schema_packages.elabftw:schema"
openbisschema = "nomad_external_eln_integrations.schema_packages.openbis:schema"
labfolderschema = "nomad_external_eln_integrations.schema_packages.labfolder:labfolder_schema"
elabftwschema = "nomad_external_eln_integrations.schema_packages.elabftw:elabftw_schema"
openbisschema = "nomad_external_eln_integrations.schema_packages.openbis:openbis_schema"
elabftwexample = "nomad_external_eln_integrations.example_uploads:elabftwexample"
[tool.cruft]
# Avoid updating workflow files, this leads to permissions issues
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def load(self):
return m_package


schema = ElabftwNormalizerEntryPoint(
elabftw_schema = ElabftwNormalizerEntryPoint(
name='elabftw',
description='NOMAD integration for mapping elabftw data to NOMAD schema',
)
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def load(self):
return m_package


schema = LabfolderEntryPoint(
labfolder_schema = LabfolderEntryPoint(
name='labfolder',
description='NOMAD integration for mapping Labfolder data to NOMAD schema',
)
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def load(self):
return m_package


schema = OpenbisEntryPoint(
openbis_schema = OpenbisEntryPoint(
name='openbis',
description='NOMAD integration for mapping Openbis data to NOMAD schema',
)

0 comments on commit a442fe5

Please sign in to comment.