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
6 changes: 3 additions & 3 deletions .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changes here will be overwritten by Copier; DO NOT MODIFY THIS FILE DIRECTLY!
#
# This file was generated using copier (https://copier.readthedocs.io/) with the
# template copier-UvScaffolding (https://github.com/gt-sse-center/copier-UvScaffolding).
# template copier-UvScaffolding (https://github.com/gt-csse/copier-UvScaffolding).
# Additional information (including instructions on how to use this template with copier) is
# available at https://github.com/gt-sse-center/copier-UvScaffolding.
# available at https://github.com/gt-csse/copier-UvScaffolding.
#

_commit: v0.5.6
_commit: v0.5.11
_src_path: .
author_email: github@DavidBrownell.com
author_name: David Brownell
Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ keywords = [
"restore",
]

license = "MIT"

classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
Expand All @@ -49,6 +47,9 @@ classifiers = [
"Topic :: Utilities",
]

[project.license]
text = "MIT"

[project.urls]
Homepage = "https://github.com/davidbrownell/FileBackup"
Documentation = "https://github.com/davidbrownell/FileBackup"
Expand All @@ -59,7 +60,7 @@ FileBackup = "FileBackup.CommandLine:EntryPoint.app"
file_backup = "FileBackup.CommandLine:EntryPoint.app"

[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
requires = ["uv_build>=0.11.19,<0.12.0"]
build-backend = "uv_build"

[dependency-groups]
Expand Down Expand Up @@ -94,6 +95,8 @@ ignore = [
"D105", # Missing docstring in magic method
"D107", # Missing docstring in `__init__` method
"D202", # No blank lines allowed after function docstring
"D203", # Incorrect blank line before class docstring
"D213", # Multi line summary second line
"E501", # Line too long
"FIX002", # Line contains TODO, consider resolving the issue
"I001", # Import block is un-sorted or un-formatted
Expand Down
Loading