-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.9 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dfvfs"
version = "20260419"
description = "Digital Forensics Virtual File System (dfVFS)"
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 >= 20221112",
"dtfabric >= 20230518",
"libbde-python >= 20220121",
"libcaes-python >= 20240114",
"libewf-python >= 20131210",
"libfcrypto-python >= 20240114",
"libfsapfs-python >= 20220709",
"libfsext-python >= 20220829",
"libfsfat-python >= 20220925",
"libfshfs-python >= 20220831",
"libfsntfs-python >= 20211229",
"libfsxfs-python >= 20220829",
"libfvde-python >= 20220121",
"libfwnt-python >= 20210717",
"libluksde-python >= 20220121",
"libmodi-python >= 20210405",
"libphdi-python >= 20220228",
"libqcow-python >= 20201213",
"libsigscan-python >= 20230109",
"libsmdev-python >= 20140529",
"libsmraw-python >= 20140612",
"libvhdi-python >= 20201014",
"libvmdk-python >= 20140421",
"libvsapm-python >= 20230506",
"libvsgpt-python >= 20211115",
"libvshadow-python >= 20160109",
"libvslvm-python >= 20160109",
"pytsk3 >= 20210419",
"xattr >= 0.7.2 ; platform_system != \"Windows\"",
]
[project.urls]
Documentation = "https://dfvfs.readthedocs.io/en/latest"
Homepage = "https://github.com/log2timeline/dfvfs"
Repository = "https://github.com/log2timeline/dfvfs"
[tool.setuptools.package-data]
dfvfs = [
"lib/*.yaml",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["dfvfs"]
exclude = ["docs", "tests", "tests.*", "utils"]