-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-ref-forces
- Loading branch information
Showing
27 changed files
with
362 additions
and
688 deletions.
There are no files selected for viewing
This file contains 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,14 @@ | ||
name: pre-commit | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: pre-commit/[email protected] |
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -1,14 +1,61 @@ | ||
Authors | ||
======= | ||
Authors and Contributing | ||
======================== | ||
|
||
.. note:: | ||
|
||
Every contribution is welcome and you will be included in this ever growing list. | ||
|
||
The creation of mlipx began during Fabian Zills internship at BASF SE, where he worked under the guidance of Sandip De. The foundational concepts and designs were initially developed by Sandip, while the current version of the code is a product of contributions from various members of the BASF team. Fabian Zills integrated several of his previous projects and lead the technical development of the initial release of this code. The code has been released with the intention of fostering community involvement in future developments. We acknowledge support from: | ||
Authors | ||
------- | ||
The creation of ``mlipx`` began during Fabian Zills internship at BASF SE, where he worked under the guidance of Sandip De. The foundational concepts and designs were initially developed by Sandip, while the current version of the code is a product of contributions from various members of the BASF team. Fabian Zills integrated several of his previous projects and lead the technical development of the initial release of this code. The code has been released with the intention of fostering community involvement in future developments. We acknowledge support from: | ||
|
||
- Fabian Zills | ||
- Sheena Agarwal | ||
- Sandip De | ||
- Shuang Han | ||
- Srishti Gupta | ||
- Tiago Joao Ferreira Goncalves | ||
|
||
|
||
Contribution Guidelines | ||
----------------------- | ||
|
||
We welcome contributions to :code:`mlipx`! | ||
With the inclusion of your contributions, we can make :code:`mlipx` better for everyone. | ||
|
||
To ensure code quality and consistency, we use :code:`pre-commit` hooks. | ||
To install the pre-commit hooks, run the following command: | ||
|
||
.. code:: console | ||
(.venv) $ pre-commit install | ||
All pre-commit hooks have to pass before a pull request can be merged. | ||
|
||
For new recipes, we recommend adding an example to the ``\examples`` directory of this repository and updating the documentation accordingly. | ||
|
||
**Plugins** | ||
|
||
It is further possible, to add new recipes to ``mlipx`` by writing plugins. | ||
We use the entry point ``mlipx.recipes`` to load new recipes. | ||
You can find more information on entry points `here <https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_. | ||
|
||
Given the following file ``yourpackage/recipes.py`` in your package: | ||
|
||
.. code:: python | ||
from mlipx.recipes import app | ||
@app.command() | ||
def my_recipe(): | ||
# Your recipe code here | ||
you can add the following to your ``pyproject.toml``: | ||
|
||
.. code:: toml | ||
[project.entry-points."mlipx.recipes"] | ||
yourpackage = "yourpackage.recipes" | ||
and when your package is installed together with ``mlipx``, the recipe will be available in the CLI via ``mlipx recipes my_recipe``. |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.