Skip to content

Commit

Permalink
Rename folders
Browse files Browse the repository at this point in the history
  • Loading branch information
EdmundGoodman committed Feb 8, 2024
1 parent 18e60d9 commit a2aa200
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tool.poetry]
name = "pyproject-template"
name = "hpc-multibench"
version = "0.1.0"
description = "A template for making new python projects with all the bells and whistles"
description = "A tool to generate and run HPC batch computer jobs via Slurm from a YAML configuration file"
authors = ["EdmundGoodman <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/EdmundGoodman/pyproject_template"
homepage = "https://edmundgoodman.github.io/pyproject_template"
repository = "https://github.com/EdmundGoodman/hpc-multibench"
homepage = "https://edmundgoodman.github.io/hpc-multibench"

[tool.poetry.scripts]
main = "pyproject_template.main:main"
main = "hpc-multibench.main:main"

[build-system]
requires = ["poetry-core"]
Expand Down Expand Up @@ -113,7 +113,7 @@ markers = [
[tool.coverage.run]
branch = true
source = ["src/"]
omit = ["src/pyproject_template/__main__.py"]
omit = ["src/hpc-multibench/__main__.py"]

[tool.coverage.report]
fail_under = 90
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from pyproject_template.main import get_greeting, main
from hpc_multibench.main import get_greeting, main


def test_get_greeting() -> None:
Expand Down

0 comments on commit a2aa200

Please sign in to comment.