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
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ description = "libcloudforensics is a set of tools to help acquire forensic evid
authors = ["cloud-forensics-utils development team <cloud-forensics-utils-dev@googlegroups.com>"]
license = "Apache-2.0"
readme = "README.md"
packages = [
{ include = "libcloudforensics" },
{ include = "tools" },
]

[tool.poetry.scripts]
cloudforensics = "tools.cli:Main"
Expand Down
5 changes: 3 additions & 2 deletions tools/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,10 @@ def Main() -> None:
('metrics', 'A comma separated list of metrics to query for '
'the resource.', None),
('--from_date', 'A start date from which to lookup the '
'metrics. Format: %Y-%m-%dT%H:%M:%SZ', None),
'metrics. Format: %%Y-%%m-%%dT%%H:%%M:%%SZ',
None),
('--to_date', 'An end date until which to lookup the metrics.'
'Format: %Y-%m-%dT%H:%M:%SZ', None),
'Format: %%Y-%%m-%%dT%%H:%%M:%%SZ', None),
('--interval', 'An interval for the metrics, e.g. PT1H will '
'output metrics values with one hour '
'granularity.', None),
Expand Down
Loading