Skip to content

Commit

Permalink
💬 clean up package maintainer names.
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed May 12, 2024
1 parent 40ceaa3 commit 286cfea
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ See the project `CONTRIBUTING.md <https://github.com/rjdbcm/OZI/blob/main/.githu
Contact
-------

Eden Rose Duff MSc - [email protected]
Eden Ross Duff MSc - [email protected]

.. image:: https://raw.githubusercontent.com/sigstore/community/main/artwork/badge/sigstore_codesigned_purple.png
:align: center
Expand Down
2 changes: 1 addition & 1 deletion ozi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
from .spec import current_version

__version__ = current_version()
__author__ = 'Eden Rose Duff MSc'
__author__ = 'Eden Ross Duff MSc'
__all__ = ('__version__', '__author__', '__doc__')
2 changes: 1 addition & 1 deletion ozi/spec/_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def current_version() -> str:
class Spec(Default):
"""OZI Specification metadata."""

version: str = field(default='0.2', init=False)
version: str = '0.2'
python: PythonProject = ClassicProject()


Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[build-system]
build-backend = "ozi_build.buildapi"
requires = [
"OZI.build>=0.0.15",
"OZI.build>=0.0.18",
"meson[ninja]>=1.1.0",
"pip-tools>=7",
"setuptools>=64",
Expand All @@ -22,7 +22,7 @@ console_scripts = [

[tool.ozi-build.metadata]
summary = 'Packager for Python projects using Meson.'
pkg-info-file = 'build/PKG-INFO'
pkg-info-file = 'PKG-INFO'

[tool.cibuildwheel]
build-frontend = "build"
Expand All @@ -34,15 +34,14 @@ before-build = [
"pip install --upgrade OZI.build",
"pip install --upgrade setuptools_scm",
"pip install --upgrade pip-tools",
"meson setup build",
]

[tool.setuptools_scm]
version_file_template = """
Metadata-Version: 2.1
Name: @PROJECT_NAME@
Version: @SCM_VERSION@
Summary: Packager for Python projects using Meson.
Summary: Package Python projects with Meson.
Download-URL: https://github.com/rjdbcm/OZI/archive/refs/tags/@[email protected]
Home-page: https://oziproject.dev/
Author: Eden Ross Duff MSc
Expand Down Expand Up @@ -198,7 +197,7 @@ force-single-line = true
max-line-length = 102

[tool.ruff.lint.flake8-copyright]
author="Ross J. Duff MSc"
author="Eden Ross Duff MSc"

[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_ozi_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def test_new_project_bad_args( # noqa: DC102, RUF100
'ci_provider': 'github',
'name': 'ozi.phony',
'license': 'CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'author': ['Ross J. Duff'],
'author': ['Eden Ross Duff'],
'author_email': ['[email protected]'],
'keywords': 'foo,bar,baz',
'maintainer': [],
Expand Down Expand Up @@ -239,7 +239,7 @@ def test_new_project_bad_target_not_empty( # noqa: DC102, RUF100
'name': 'ozi.phony',
'license': '',
'keywords': 'baz,bar,foo',
'author': ['Ross J. Duff'],
'author': ['Eden Ross Duff'],
'author_email': ['[email protected]'],
'maintainer': [],
'maintainer_email': [],
Expand Down

0 comments on commit 286cfea

Please sign in to comment.