Skip to content

Commit

Permalink
contrain plugin versions in extra install (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaspie authored Nov 21, 2024
1 parent fa6e358 commit 7af2e03
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ super-collections==0.5.3
# via mkdocs-macros-plugin
termcolor==2.5.0
# via mkdocs-macros-plugin
tomli==2.0.2 ; python_full_version == '3.11'
tomli==2.0.2 ; python_full_version <= '3.11'
# via coverage
types-pytz==2024.2.0.20241003
# via pynxtools (pyproject.toml)
Expand Down
30 changes: 16 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,30 +66,32 @@ dev = [
convert = [
"pynxtools[apm,em,mpes,xps,stm,xrd,ellips,raman]",
]
mpes = [
"pynxtools-mpes",
]

apm = [
"pynxtools-apm",
"pynxtools-apm>=0.2.1",
]
ellips = [
"pynxtools-ellips>=0.0.4",
]
em = [
"pynxtools-em",
"pynxtools-em>=0.3.0",
]
mpes = [
"pynxtools-mpes>=0.2.0",
]
raman = [
"pynxtools-raman>=0.0.3",
]
stm = [
"pynxtools-stm",
"pynxtools-stm>=1.0.8",
]
xps = [
"pynxtools-xps",
"pynxtools-xps>=0.4.6",
]
xrd = [
"pynxtools-xrd",
]
ellips = [
"pynxtools-ellips",
]
raman = [
"pynxtools-raman",
"pynxtools-xrd>=0.0.3",
]

[project.entry-points.'nomad.plugin']
nexus_parser = "pynxtools.nomad.entrypoints:nexus_parser"
nexus_schema = "pynxtools.nomad.entrypoints:nexus_schema"
Expand Down

0 comments on commit 7af2e03

Please sign in to comment.