Skip to content

Commit f5eefa2

Browse files
Merge pull request #2 from scope-forensics/development
dev
2 parents 1020f99 + 72a4e0f commit f5eefa2

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
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

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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.

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "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."
99
readme = "README.md"
1010
authors = [
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"

0 commit comments

Comments
 (0)