Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions databaseparsers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ class EntryPoint(ParserEntryPoint):
This class must have a function `def parse(self, mainfile, archive, logger)`.
"""
)
code_name: Optional[str]
code_homepage: Optional[str]
code_category: Optional[str]
code_name: Optional[str] = None
code_homepage: Optional[str] = None
code_category: Optional[str] = None
metadata: Optional[dict] = Field(
None,
description="""
Metadata passed to the UI. Deprecated. """
)
Expand Down
17 changes: 7 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,24 @@ readme = "README.md"
authors = [{ name = "The NOMAD Authors" }]
license = { file = "LICENSE" }
dependencies = [
"nomad-lab>=1.3.6.dev1",
"nomad-lab>=1.3.7",
"nomad-schema-plugin-simulation-workflow>=1.0.1",
"nomad-schema-plugin-run>=1.0.1",
"pydantic>=1.10.8,<2.0.0",
"pydantic>=1.10.8",
]

[project.urls]
homepage = "https://github.com/nomad-coe/database-parsers"

[project.optional-dependencies]
tests = [
"mypy==1.0.1",
"pylint==2.13.9",
"pylint_plugin_utils==0.5",
"pycodestyle==2.8.0",
"pytest==3.10.0",
"pytest>= 5.3.0, <= 8.0.2",
"pytest-timeout==1.4.2",
"pytest-cov==2.7.1",
"astroid==2.11.7",
"typing-extensions==4.4.0",
"ruff==0.1.8",
"astroid>=2.5.1",
'mypy==1.0.1',
'ruff>=0.6',
'typing-extensions>=4.12',
]

[tool.ruff]
Expand Down
Loading