Skip to content
Merged
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
21 changes: 13 additions & 8 deletions licenserc.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License
#
# Copyright (C) 2025 vanous
# Copyright (C) 2025 tison, vanous
#
# This file is part of pymvr.
#
Expand All @@ -22,17 +22,22 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

headerPath = "mit-header.txt"
[header]
path = "mit-header.txt"

[files]
excludes = [
".github/",
".github/**",
"**/*.md",
".gitignore",
"LICENSE",
"tests/**/*.mvr",
]

[git]
attrs = 'auto'
file_attrs = 'auto'
ignore = 'auto'

[properties]
inceptionYear = 2023
projectName = "pymvr"

[props]
inception_year = 2023
project_name = "pymvr"
2 changes: 1 addition & 1 deletion mit-header.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ MIT License

Copyright (C) {{attrs.git_file_created_year}} {{ attrs.git_authors | join(", ") }}

This file is part of {{props["projectName"]}}.
This file is part of {{ props.project_name }}.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading