File tree Expand file tree Collapse file tree 3 files changed +20
-7
lines changed
Expand file tree Collapse file tree 3 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 11# Auto detect text files and perform LF normalization
22* text =auto
3+ # Ensure Python files have LF line endings
4+ * .py text eol =lf
5+ # Ensure shell scripts have LF line endings
6+ * .sh text eol =lf
7+ # Declare files that will always have CRLF line endings on checkout
8+ * .bat text eol =crlf
9+ * .cmd text eol =crlf
10+ # Denote all files that are truly binary and should not be modified
11+ * .png binary
12+ * .jpg binary
13+ * .gif binary
14+ # ... add other binary file types as needed
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Scope is an open source tool for collecting and analyzing cloud logs for forensi
1414### Using pip (Recommended)
1515
1616``` bash
17- pip install scope
17+ pip install scope-forensics
1818```
1919
2020### From Source
@@ -218,6 +218,4 @@ This command will:
218218
219219### Exporting Timelines
220220
221- By default, Scope exports timelines to the specified output file. You can specify different formats:
222-
223- ```
221+ By default, Scope exports timelines to the specified output file. You can specify betwen csv and json formats.
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " scope-forensics"
7- version = " 0.1.1 "
8- description = " Scope is an Open Source Cloud Forensics tool for AWS. Scope can rapidly obtains logs and creates super timelines for analysis."
7+ version = " 0.1.2 "
8+ description = " Scope is an Open Source Cloud Forensics tool for AWS. Scope can rapidly obtain logs and create super timelines for analysis."
99readme = " README.md"
1010authors = [
1111 {name = " Scope" , email = " scopeforensics@protonmail.com" },
@@ -22,4 +22,7 @@ dependencies = [
2222
2323[project .urls ]
2424"Homepage" = " https://github.com/scope-forensics/scope"
25- "Bug Tracker" = " https://github.com/scope-forensics/scope/issues"
25+ "Bug Tracker" = " https://github.com/scope-forensics/scope/issues"
26+
27+ [project .scripts ]
28+ scope = " scope.cli:main"
You can’t perform that action at this time.
0 commit comments