forked from google/dfiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.04 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dfiq"
authors = [{name = "Ryan Benson", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3"
]
dynamic = ["dependencies", "version"]
description = "DFIQ is a collection of investigative questions and the approaches for answering them"
keywords=["dfiq", "forensics", "dfir", "investigative questions", "security", "digital forensics"]
[tool.setuptools]
packages = [
"dfiq",
"dfiq.data.approaches",
"dfiq.data.facets",
"dfiq.data.questions",
"dfiq.data.scenarios",
"dfiq.scripts",
"dfiq.templates",
"dfiq.utils"
]
[tool.setuptools_scm]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { attr = "dfiq.__version__" }
[project.urls]
Homepage = "https://dfiq.org"
Repository = "https://github.com/google/dfiq"