lockss-turtles 0.6.0.dev15__tar.gz → 0.6.0.dev16__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lockss-turtles
3
- Version: 0.6.0.dev15
3
+ Version: 0.6.0.dev16
4
4
  Summary: Library and command line tool to manage LOCKSS plugin sets and LOCKSS plugin registries
5
5
  License: BSD-3-Clause
6
6
  Author: Thib Guicherd-Callin
@@ -28,7 +28,7 @@
28
28
 
29
29
  [project]
30
30
  name = "lockss-turtles"
31
- version = "0.6.0-dev15" # Always change in __init__.py, and at release time in README.rst and CHANGELOG.rst
31
+ version = "0.6.0-dev16" # Always change in __init__.py, and at release time in README.rst and CHANGELOG.rst
32
32
  description = "Library and command line tool to manage LOCKSS plugin sets and LOCKSS plugin registries"
33
33
  license = { text = "BSD-3-Clause" }
34
34
  readme = "README.rst"
@@ -5,7 +5,7 @@ Library and command line tool to manage LOCKSS plugin sets and LOCKSS plugin
5
5
  registries.
6
6
  """
7
7
 
8
- __version__ = '0.6.0-dev15'
8
+ __version__ = '0.6.0-dev16'
9
9
 
10
10
  __copyright__ = '''
11
11
  Copyright (c) 2000-2025, Board of Trustees of Leland Stanford Jr. University
@@ -160,12 +160,12 @@ class ReleasePluginCommand(OutputFormatOptions, NonInteractiveOptions, PluginDep
160
160
 
161
161
  class TurtlesCommand(BaseModel):
162
162
  bp: Optional[BuildPluginCommand] = Field(description='synonym for: build-plugin')
163
- build_plugin: Optional[BuildPluginCommand] = Field(description='build (package and sign) plugins')
163
+ build_plugin: Optional[BuildPluginCommand] = Field(description='build (package and sign) plugins', alias='build-plugin')
164
164
  copyright: Optional[StringCommand.type(__copyright__)] = Field(description=COPYRIGHT_DESCRIPTION)
165
- deploy_plugin: Optional[DeployPluginCommand] = Field(description='deploy plugins')
165
+ deploy_plugin: Optional[DeployPluginCommand] = Field(description='deploy plugins', alias='deploy-plugin')
166
166
  dp: Optional[DeployPluginCommand] = Field(description='synonym for: deploy-plugin')
167
167
  license: Optional[StringCommand.type(__license__)] = Field(description=LICENSE_DESCRIPTION)
168
- release_plugin: Optional[ReleasePluginCommand] = Field(description='release (build and deploy) plugins')
168
+ release_plugin: Optional[ReleasePluginCommand] = Field(description='release (build and deploy) plugins', alias='release-plugin')
169
169
  rp: Optional[ReleasePluginCommand] = Field(description='synonym for: release-plugin')
170
170
  version: Optional[StringCommand.type(__version__)] = Field(description=VERSION_DESCRIPTION)
171
171