-
Notifications
You must be signed in to change notification settings - Fork 37
register QMzyme #381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
hklem
wants to merge
11
commits into
MDAnalysis:main
Choose a base branch
from
hklem:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+103
−0
Open
register QMzyme #381
Changes from 9 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
7d5e045
Add initial metadata.yaml for QMzyme project
hklem 51ec87b
Update Python version requirements in metadata.yaml
hklem 3523bef
Add conda commands for QMzyme installation
hklem cce7a2f
Modify run_tests commands in metadata.yaml
hklem 3e857b5
Update metadata.yaml
hklem 8efaf99
Change install to src during tests
hklem 1db6963
Change development status from 'develop' to 'Beta'
hklem f374fb5
Update installation command for QMzyme to use python3.11
hklem f8f05c1
Update Python version requirements and clean up metadata
hklem ec30ef3
Apply suggestions from code review
hklem ca45e95
Comment out optional entries
hklem File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,115 @@ | ||
| # TEMPLATE MDAKit file | ||
| # -------------------- | ||
| # | ||
| # Please replace ALL entries with appropriate content for YOUR MDAKit. | ||
| # Below we use the placeholder GH_HOST_ACCOUNT for the GitHub account where | ||
| # the source code repository is held, typically your username or the | ||
| # organization that you're part off. | ||
| # MYPROJECT is the name of your project (the repository name and here | ||
| # we assume that this is also the PyPi/conda package name) whereas | ||
| # MYPACKAGE is how you import it in python. | ||
| # | ||
| # See https://mdakits.mdanalysis.org/add.html for more information. | ||
| # | ||
| #------------------------------------------------------------ | ||
| # Required entries | ||
| #------------------------------------------------------------ | ||
| ## str: name of the project (the respository name) | ||
| project_name: QMzyme | ||
|
|
||
| ## List(str): a link to the authors file (preferred) or a list of authors | ||
| authors: | ||
| - https://github.com/Klem-Research-Group/QMzyme#code-contributorsdevelopers | ||
|
|
||
| ## List(str): a list of maintainers | ||
| ## Please note these _must_ be GitHub handles | ||
| ## The maintainers will be tagged in issues if their MDAKit is failing. | ||
| maintainers: | ||
| - Klem-Research-Group | ||
| - hklem | ||
| - MirumKim | ||
|
|
||
| ## str: a free form description of the mdakit | ||
| description: | ||
| QM-based enzyme model generation and validation. | ||
|
|
||
| ## List(str): a list of keywords which describe the mdakit | ||
| keywords: | ||
| - theozyme | ||
| - compuzyme | ||
| - cluster | ||
| - active-site | ||
| - biocatalysis | ||
| - enzyme-mechanisms | ||
| - quantum-mechanics | ||
| - QM-input | ||
|
|
||
| ## str: the license the mdakit falls under | ||
| ## See https://spdx.org/licenses/ for valid license specifiers | ||
| license: MIT License | ||
|
|
||
| ## str: the link to the project's code | ||
| ## Please note that this is not limited to GitHub! Can be Gitlab, etc.. | ||
| project_home: https://github.com/Klem-Research-Group/QMzyme/ | ||
|
|
||
| ## str: the link to the project's documentation | ||
| documentation_home: https://qmzyme.readthedocs.io/ | ||
|
|
||
| ## str: the type of documentation available [UserGuide, API, README] | ||
| documentation_type: UserGuide + API | ||
|
|
||
| ## List(str): a list of commands to use when installing the mdakit from its | ||
| ## source code. | ||
| src_install: | ||
| - conda create -n qmzyme -y python=3.11 | ||
| - conda activate qmzyme | ||
|
hklem marked this conversation as resolved.
Outdated
|
||
| - pip install git+https://github.com/Klem-Research-Group/QMzyme@main | ||
|
|
||
| ## str: the package name used to import the mdakit | ||
| import_name: QMzyme | ||
|
|
||
| ## str: a specification for the range of Python versions supported by this MDAKit | ||
| python_requires: ">=3.11" | ||
|
|
||
| ## str: a specification for the range of MDAnalysis versions supported by this MDAKit | ||
| mdanalysis_requires: ">=2.0.0" | ||
|
|
||
| ## List(str): a list of commands to use when attempting to run the MDAKit's tests | ||
| ## If you package your tests inside your package then you can typically use the | ||
| ## pytest --pyargs MYPACKAGE | ||
| ## command as shown below. | ||
| ## Otherwise you need to include commands to make the tests available. | ||
| ## For example, if the tests are in the repository at the top level under `./tests`: | ||
| ## First use `git clone latest` to either clone the top commit for "development code" checks or check out | ||
| ## the latest tag for "latest release" checks. Then then run pytest: | ||
| ## - git clone latest | ||
| ## - pytest -v ./tests | ||
| ## Feel free to ask for advice on your pull request! | ||
| run_tests: | ||
| - pytest -v | ||
|
hklem marked this conversation as resolved.
Outdated
|
||
|
|
||
| ## List(str): a list of commands to use to install the necessary dependencies required | ||
| ## to run the MDAKit's tests. | ||
| ## The default below _might_ be sufficient or you might not even need MDAnalysisTests: | ||
| ## make sure that it is appropriate for how you run tests. | ||
| test_dependencies: | ||
| - git clone https://github.com/Klem-Research-Group/QMzyme | ||
| - cd QMzyme | ||
| - python -m pip install ".[test]" | ||
|
|
||
| ## str: the organisation name the MDAKit falls under | ||
| project_org: Klem-Research-Group | ||
|
|
||
| #------------------------------------------------------------ | ||
| # Optional entries | ||
| #------------------------------------------------------------ | ||
|
|
||
| ## List(str) a list of publications to cite when using the MDAKit | ||
| ## Links to scientific publications or stable URLs (typically of the form | ||
| ## https://doi.org/<DOI> or to a preprint server) | ||
| publications: | ||
| - TBD | ||
|
hklem marked this conversation as resolved.
Outdated
|
||
|
|
||
| ## str: a link to the MDAKit's community (mailing list, github discussions, etc...) | ||
| community_home: https://qmzyme.readthedocs.io/ | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.