Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion template/LICENSE.jinja
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) {{year}}, {{orgname|capitalize}} contributors (https://github.com/{{orgname}})
Copyright (c) {{year}}, {{projectname}} contributors (https://github.com/{{orgname}}/{{projectname}})
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
6 changes: 3 additions & 3 deletions template/docs/conf.py.jinja
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) {{year}} {{orgname|capitalize}} contributors (https://github.com/{{orgname}})
# Copyright (c) {{year}}, {{projectname}} contributors (https://github.com/{{orgname}}/{{projectname}})

import doctest
import os
Expand All @@ -15,8 +15,8 @@ logger = logging.getLogger(__name__)

# General information about the project.
project = '{{prettyname}}'
copyright = '{{year}} Scipp contributors'
author = 'Scipp contributors'
copyright = '{{year}} {{projectname}} contributors'
author = '{{projectname}} contributors'

html_show_sourcelink = True

Expand Down
2 changes: 1 addition & 1 deletion template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "{{projectname}}"
description = "{{description}}"
authors = [{ name = "Scipp contributors" }]
authors = [{ name = "{{projectname}} contributors" }]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) {{year}} {{orgname|capitalize}} contributors (https://github.com/{{orgname}})
# Copyright (c) {{year}}, {{projectname}} contributors (https://github.com/{{orgname}}/{{projectname}})
# ruff: noqa: E402, F401

import importlib.metadata
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) {{year}} {{orgname|capitalize}} contributors (https://github.com/{{orgname}})
# Copyright (c) {{year}}, {{projectname}} contributors (https://github.com/{{orgname}}/{{projectname}})
# ruff: noqa: E402, F401

import importlib.metadata
Expand Down
2 changes: 1 addition & 1 deletion template/tests/package_test.py.jinja
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) {{year}} {{orgname|capitalize}} contributors (https://github.com/{{orgname}})
# Copyright (c) {{year}}, {{projectname}} contributors (https://github.com/{{orgname}}/{{projectname}})

"""Tests of package integrity.

Expand Down