-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (71 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
76 lines (71 loc) · 2.13 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
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqliterc"
version = "20260413"
description = "SQLite database resources (sqliterc)"
maintainers = [
{ name = "Joachim Metz", email = "joachim.metz@gmail.com" },
]
license = "Apache-2.0"
license-files = ["ACKNOWLEDGEMENTS", "AUTHORS", "LICENSE"]
readme = "README.md"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
]
requires-python = ">=3.10"
dependencies = [
"PyYAML >= 3.10",
"artifacts >= 20220219",
"cffi >= 1.9.1",
"dfdatetime >= 20221112",
"dfimagetools >= 20240211",
"dfvfs >= 20240115",
"dfwinreg >= 20211207",
"dtfabric >= 20230518",
"libbde-python >= 20220121",
"libcaes-python >= 20240114",
"libcreg-python >= 20200725",
"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",
"libregf-python >= 20201002",
"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.scripts]
extract = "sqliterc.scripts.extract:Main"
[project.urls]
Documentation = "https://sqliterc.readthedocs.io/en/latest"
Homepage = "https://github.com/libyal/sqlite-kb"
Repository = "https://github.com/libyal/sqlite-kb"
[tool.setuptools.package-data]
sqliterc = [
"data/*.yaml",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["sqliterc"]
exclude = ["docs", "tests", "tests.*", "utils"]