-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 887 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["setuptools>=42", "wheel>=0.37.0"]
build-backend = "setuptools.build_meta"
[project]
name = "scope-forensics"
version = "1.0.0"
description = "Scope is an Open Source Cloud Forensics tool for AWS. Scope can rapidly obtain logs, discover resources, and create super timelines for analysis."
readme = "README.md"
authors = [
{name = "Scope", email = "scopeforensics@protonmail.com"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
dependencies = [
"boto3>=1.24.0",
"botocore>=1.27.0",
]
[project.urls]
"Homepage" = "https://github.com/scope-forensics/scope"
"Bug Tracker" = "https://github.com/scope-forensics/scope/issues"
[project.scripts]
scope = "scope.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["scope", "scope.aws", "scope.common"]