Skip to content

Commit 6ba0c12

Browse files
committed
Rename codebase (#60)
1 parent 51abe65 commit 6ba0c12

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+154
-154
lines changed

.github/ISSUE_TEMPLATE/5_question.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Question
2-
description: Ask a question about mlip-testing
2+
description: Ask a question about ML-PEG
33
labels: ["question"]
44
body:
55
- type: markdown

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: Documentation
4-
url: https://ddmms.github.io/mlip-testing/
4+
url: https://ddmms.github.io/ml-peg/
55
about: Please consult the documentation before creating an issue.

.github/PULL_REQUEST_TEMPLATE/custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Thank you for contributing! To help us out with reviewing, please consider the f
1010

1111
PR author **must** check the checkboxes below when creating the PR.
1212

13-
- [ ] I've confirmed the [contribution guidelines](https://github.com/ddmms/mlip-testing/blob/main/contributing.md).
13+
- [ ] I've confirmed the [contribution guidelines](https://github.com/ddmms/ml-peg/blob/main/contributing.md).
1414

1515
## Summary
1616

.github/PULL_REQUEST_TEMPLATE/new_benchmark.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Thank you for contributing! To help us out with reviewing, please consider the f
1010

1111
PR author **must** check the checkboxes below when creating the PR.
1212

13-
- [ ] I've confirmed the [contribution guidelines](https://github.com/ddmms/mlip-testing/blob/main/contributing.md).
13+
- [ ] I've confirmed the [contribution guidelines](https://github.com/ddmms/ml-peg/blob/main/contributing.md).
1414

1515
## Summary
1616

.github/PULL_REQUEST_TEMPLATE/new_model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Thank you for contributing! To help us out with reviewing, please consider the f
1010

1111
PR author **must** check the checkboxes below when creating the PR.
1212

13-
- [ ] I've confirmed the [contribution guidelines](https://github.com/ddmms/mlip-testing/blob/main/contributing.md).
13+
- [ ] I've confirmed the [contribution guidelines](https://github.com/ddmms/ml-peg/blob/main/contributing.md).
1414

1515
## Summary
1616

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
env:
2727
# show timings of tests
2828
PYTEST_ADDOPTS: "--durations=0"
29-
run: uv run pytest --cov mlip_testing --cov-append .
29+
run: uv run pytest --cov ml_peg --cov-append .
3030

3131
- name: Report coverage to Coveralls
3232
uses: coverallsapp/github-action@v2
3333
with:
3434
parallel: true
3535
flag-name: run-${{ matrix.python-version }}
3636
file: coverage.xml
37-
base-path: mlip_testing
37+
base-path: ml_peg
3838

3939
coverage:
4040
needs: tests

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
jobs:
1818
docs-deploy:
19-
if: github.ref == 'refs/heads/main' && github.repository == 'ddmms/mlip-testing'
19+
if: github.ref == 'refs/heads/main' && github.repository == 'ddmms/ml-peg'
2020
environment:
2121
name: github-pages
2222
url: ${{ steps.deployment.outputs.page_url }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ repos:
2323
rev: v1.8.0
2424
hooks:
2525
- id: numpydoc-validation
26-
files: ^mlip_testing/
26+
files: ^ml_peg/

CITATION.cff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cff-version: 1.2.0
2-
title: "mlip-testing"
2+
title: "ml-peg"
33
message: "If you use this software, please cite it as below."
44
type: software
55
authors:
@@ -11,6 +11,6 @@ authors:
1111
identifiers:
1212
- type: doi
1313
value: 10.5281/zenodo.16904444
14-
repository-code: 'https://github.com/ddmms/mlip-testing'
15-
abstract: Testing framework for machine learnt interatomic potentials
14+
repository-code: 'https://github.com/ddmms/ml-peg'
15+
abstract: "ML potential usability and performance guide"
1616
license: BSD-3-Clause

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# mlip-testing
1+
# ml-peg
22

33
[![Build Status][ci-badge]][ci-link]
44
[![Coverage Status][cov-badge]][cov-link]
@@ -33,16 +33,16 @@ All required and optional dependencies can be found in [pyproject.toml](pyprojec
3333

3434
### Installation
3535

36-
The latest stable release of `mlip-testing`, including its dependencies, will be installable from PyPI by running:
36+
The latest stable release of `ml-peg`, including its dependencies, will be installable from PyPI by running:
3737

3838
```
39-
python3 -m pip install mlip-testing
39+
python3 -m pip install ml-peg
4040
```
4141

42-
To get all the latest changes, `mlip-testing` can be installed from GitHub:
42+
To get all the latest changes, `ml-peg` can be installed from GitHub:
4343

4444
```
45-
python3 -m pip install git+https://github.com/ddmms/mlip-testing.git
45+
python3 -m pip install git+https://github.com/ddmms/ml-peg.git
4646
```
4747

4848
## Features
@@ -53,38 +53,38 @@ Coming soon!
5353
## Development
5454

5555
Please ensure you have consulted our
56-
[contribution guidelines](https://github.com/ddmms/mlip-testing/blob/main/contributing.md)
56+
[contribution guidelines](https://github.com/ddmms/ml-peg/blob/main/contributing.md)
5757
and
58-
[coding style](https://github.com/ddmms/mlip-testing/blob/main/coding_style.md)
58+
[coding style](https://github.com/ddmms/ml-peg/blob/main/coding_style.md)
5959
before proceeding.
6060

61-
We recommend installing `uv` for dependency management when developing for `mlip-testing`:
61+
We recommend installing `uv` for dependency management when developing for `ml-peg`:
6262

6363
1. Install [uv](https://docs.astral.sh/uv/getting-started/installation)
64-
2. Install `mlip-testing` with dependencies in a virtual environment:
64+
2. Install `ml-peg` with dependencies in a virtual environment:
6565

6666
```shell
67-
git clone https://github.com/ddmms/mlip-testing
68-
cd mlip-testing
67+
git clone https://github.com/ddmms/ml-peg
68+
cd ml-peg
6969
uv sync # Create a virtual environment and install dependencies
7070
source .venv/bin/activate
7171
pre-commit install # Install pre-commit hooks
7272
pytest -v # Discover and run all tests
7373
```
7474

75-
Please refer to the [online documentation](https://ddmms.github.io/mlip-testing/developer_guide/index.html)
75+
Please refer to the [online documentation](https://ddmms.github.io/ml-peg/developer_guide/index.html)
7676
for information about contributing new benchmarks and models.
7777

7878
## License
7979

8080
[GNU General Public License version 3](LICENSE)
8181

82-
[ci-badge]: https://github.com/ddmms/mlip-testing/actions/workflows/ci.yml/badge.svg?branch=main
83-
[ci-link]: https://github.com/ddmms/mlip-testing/actions
84-
[cov-badge]: https://coveralls.io/repos/github/ddmms/mlip-testing/badge.svg?branch=main
85-
[cov-link]: https://coveralls.io/github/ddmms/mlip-testing?branch=main
86-
[docs-badge]: https://github.com/ddmms/mlip-testing/actions/workflows/docs.yml/badge.svg
87-
[docs-link]: https://ddmms.github.io/mlip-testing/
82+
[ci-badge]: https://github.com/ddmms/ml-peg/actions/workflows/ci.yml/badge.svg?branch=main
83+
[ci-link]: https://github.com/ddmms/ml-peg/actions
84+
[cov-badge]: https://coveralls.io/repos/github/ddmms/ml-peg/badge.svg?branch=main
85+
[cov-link]: https://coveralls.io/github/ddmms/ml-peg?branch=main
86+
[docs-badge]: https://github.com/ddmms/ml-peg/actions/workflows/docs.yml/badge.svg
87+
[docs-link]: https://ddmms.github.io/ml-peg/
8888
[license-badge]: https://img.shields.io/badge/License-GPLv3-blue.svg
8989
[license-link]: https://opensource.org/license/gpl-3-0
9090
[doi-link]: https://doi.org/10.5281/zenodo.16904445

0 commit comments

Comments
 (0)