Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ChemTraYzer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LTT
ChemTraYzer
Commits
94813cce
Commit
94813cce
authored
1 year ago
by
Florian Solbach
Browse files
Options
Downloads
Patches
Plain Diff
Fix bug
parent
b322a84a
Branches
Branches containing commit
Tags
3.0.0b2
Tags containing commit
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
CITATION.cff
+1
-1
1 addition, 1 deletion
CITATION.cff
codemeta.json
+2
-2
2 additions, 2 deletions
codemeta.json
pyproject.toml
+1
-1
1 addition, 1 deletion
pyproject.toml
somesy.toml
+1
-7
1 addition, 7 deletions
somesy.toml
src/chemtrayzer/ui/cli.py
+0
-15
0 additions, 15 deletions
src/chemtrayzer/ui/cli.py
with
5 additions
and
26 deletions
CITATION.cff
+
1
−
1
View file @
94813cce
...
...
@@ -3,7 +3,7 @@ message: If you use this software, please cite it using these metadata.
type: software
title: ChemTraYzer
abstract: Reaction models from molecular dynamics simulations.
version: 3.0.0b
1
version: 3.0.0b
2
keywords:
- molecular dynamics
- reaction mechanism
...
...
This diff is collapsed.
Click to expand it.
codemeta.json
+
2
−
2
View file @
94813cce
...
...
@@ -46,7 +46,7 @@
],
"name"
:
"ChemTraYzer"
,
"description"
:
"Reaction models from molecular dynamics simulations."
,
"version"
:
"3.0.0b
1
"
,
"version"
:
"3.0.0b
2
"
,
"keywords"
:
[
"molecular dynamics"
,
"reaction mechanism"
,
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
+
1
−
1
View file @
94813cce
...
...
@@ -28,7 +28,7 @@ classifiers = [
###############################################################################
name
=
"ChemTraYzer"
description
=
"Reaction models from molecular dynamics simulations."
version
=
"3.0.0b
1
"
version
=
"3.0.0b
2
"
keywords
=
[
"molecular dynamics"
,
"reaction mechanism"
,
"chemistry"
,
"reaction mechanism generation"
,
"quantum mechanics"
,
"automated workflows"
,
"reaction network"
,
"reaction kinetics"
]
[[project.maintainers]]
name
=
"The ChemTraYzer Authors"
...
...
This diff is collapsed.
Click to expand it.
somesy.toml
+
1
−
7
View file @
94813cce
[project]
name
=
"ChemTraYzer"
version
=
"3.0.0b
1
"
version
=
"3.0.0b
2
"
description
=
"Reaction models from molecular dynamics simulations."
keywords
=
[
"molecular dynamics"
,
"reaction mechanism"
,
"chemistry"
,
"reaction mechanism generation"
,
"quantum mechanics"
,
"automated workflows"
,
"reaction network"
,
"reaction kinetics"
]
# TODO: get permalink for homepage
...
...
@@ -25,7 +25,6 @@ maintainer = true
[[project.people]]
given-names
=
"Ilias"
family-names
=
"Chair"
email
=
"ilias@example.org"
author
=
true
# [[project.people]]
...
...
@@ -41,14 +40,12 @@ author = true
[[project.people]]
given-names
=
"Wassja"
family-names
=
"Kopp"
email
=
"wassja.kopp@example.org"
orcid
=
"https://orcid.org/0000-0001-8147-3464"
author
=
true
[[project.people]]
given-names
=
"Kai"
family-names
=
"Leonhard"
email
=
"kai.leonhard@example.org"
author
=
true
orcid
=
"https://orcid.org/0000-0001-6231-6957"
# contribution = """\
...
...
@@ -64,14 +61,12 @@ orcid = "https://orcid.org/0000-0001-6231-6957"
[[project.people]]
given-names
=
"Felix"
family-names
=
"Schmalz"
email
=
"felix.schmalz@example.org"
orcid
=
"https://orcid.org/0000-0001-9032-628X"
author
=
true
[[project.people]]
given-names
=
"Florian"
family-names
=
"Solbach"
email
=
"florian.solbach@example.org"
orcid
=
"https://orcid.org/0000-0003-1923-3747"
author
=
true
# is a full author of the project (i.e. in citation.cff)
# contribution = """maintenance, """
...
...
@@ -79,7 +74,6 @@ author = true # is a full author of the project (i.e. in citation.cff)
[[project.people]]
given-names
=
"Maxim"
family-names
=
"Papusha"
email
=
"maxim.papusha@example.org"
orcid
=
"https://orcid.org/0009-0000-8580-4777"
author
=
true
...
...
This diff is collapsed.
Click to expand it.
src/chemtrayzer/ui/cli.py
+
0
−
15
View file @
94813cce
...
...
@@ -10,11 +10,6 @@ from argparse import ArgumentParser, Namespace
import
sys
from
chemtrayzer.engine.cmdtools
import
CommandLineInterface
<<<<<<<
HEAD
from
chemtrayzer.engine.testing
import
BatchCLI
from
chemtrayzer.reaction_sampling.reaction_sampling_investigation
import
AnalyzeTrajCLI
,
RunMDCLI
=======
from
chemtrayzer.reaction_sampling.reaction_sampling_investigation
import
AnalyzeTrajCLI
,
RunMDCLI
# to enable the test command, we need to ensure that pytest is installed
...
...
@@ -26,8 +21,6 @@ else:
_pytest
=
True
from
chemtrayzer.engine.testing
import
BatchCLI
>>>>>>>
release
-
3.0
.
0b0
class
Command
(
ABC
):
'''
Abstract base class for commands that can be called with the
chemtrayzer command
'''
...
...
@@ -76,22 +69,14 @@ def hello_world(args: Namespace):
# Each subcommand has its own parser, function and name. The name and function
# have to be registered here while the parser will be created automatically.
_COMMANDS
=
{
<<<<<<<
HEAD
'
test
'
:
BatchCLI
,
=======
>>>>>>>
release
-
3.0
.
0b0
'
analyze
'
:
AnalyzeTrajCLI
,
'
runmd
'
:
RunMDCLI
,
'
hello
'
:
hello_world
,
}
<<<<<<<
HEAD
=======
if
_pytest
:
_COMMANDS
[
'
test
'
]
=
BatchCLI
>>>>>>>
release
-
3.0
.
0b0
def
main
():
'''
main function that is called with the chemtrayzer command
'''
# set up basic parser
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment