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
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "scope-forensics"
version = "0.1.2"
version = "0.1.3"
description = "Scope is an Open Source Cloud Forensics tool for AWS. Scope can rapidly obtain logs and create super timelines for analysis."
readme = "README.md"
authors = [
Expand All @@ -25,4 +25,9 @@ dependencies = [
"Bug Tracker" = "https://github.com/scope-forensics/scope/issues"

[project.scripts]
scope = "scope.cli:main"
scope = "scope.cli:main"

# Add this section to ensure the package is properly installed
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["scope", "scope.aws", "scope.common"]
1 change: 1 addition & 0 deletions src/scope/cli.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
"""
Command-line interface for the Scope package.
"""
Expand Down