forked from log2timeline/dfwinreg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.05 KB
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
40
41
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dfwinreg"
version = "20251125"
description = "Digital Forensics Windows Registry (dfWinReg)"
maintainers = [
{ name = "Log2Timeline maintainers", email = "log2timeline-maintainers@googlegroups.com" },
]
license = "Apache-2.0"
license-files = ["ACKNOWLEDGEMENTS", "AUTHORS", "LICENSE"]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
requires-python = ">=3.10"
dependencies = [
"PyYAML >= 3.10",
"dfdatetime >= 20160814",
"dtfabric >= 20170524",
"libcreg-python >= 20210502",
"libregf-python >= 20201002",
]
[project.urls]
Documentation = "https://dfwinreg.readthedocs.io/en/latest"
Homepage = "https://github.com/log2timeline/dfwinreg"
Repository = "https://github.com/log2timeline/dfwinreg"
[tool.setuptools.package-data]
dfwinreg = [
"*.yaml",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["dfwinreg"]
exclude = ["docs", "tests", "tests.*", "utils"]