Files
mdrs-client-python/mdrsclient/commands/__init__.py
T
orrisroot 68670a6588 fix(ls): rename --quick to --quiet; add version command; bump to 1.3.14
- Fix ls -q long option name: --quick → --quiet (typo fix)
- Remove mdrsclient/VERSION file; read version via importlib.metadata
- Bump version 1.3.13 → 1.3.14
- Add Python 3.14 to supported classifiers; promote to Development Status 4 - Beta
- Add `version` subcommand (prints "mdrs <version>")
- Document `version` command in README

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-17 17:41:37 +09:00

36 lines
1.1 KiB
Python

from mdrsclient.commands.chacl import ChaclCommand
from mdrsclient.commands.config import ConfigCommand
from mdrsclient.commands.cp import CpCommand
from mdrsclient.commands.download import DownloadCommand
from mdrsclient.commands.file_metadata import FileMetadataCommand
from mdrsclient.commands.labs import LabsCommand
from mdrsclient.commands.login import LoginCommand
from mdrsclient.commands.logout import LogoutCommand
from mdrsclient.commands.ls import LsCommand
from mdrsclient.commands.metadata import MetadataCommand
from mdrsclient.commands.mkdir import MkdirCommand
from mdrsclient.commands.mv import MvCommand
from mdrsclient.commands.rm import RmCommand
from mdrsclient.commands.upload import UploadCommand
from mdrsclient.commands.version import VersionCommand
from mdrsclient.commands.whoami import WhoamiCommand
__all__ = [
"ConfigCommand",
"ChaclCommand",
"CpCommand",
"DownloadCommand",
"FileMetadataCommand",
"LabsCommand",
"LoginCommand",
"LogoutCommand",
"LsCommand",
"MetadataCommand",
"MkdirCommand",
"MvCommand",
"RmCommand",
"UploadCommand",
"VersionCommand",
"WhoamiCommand",
]