forked from google/dfindexeddb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.34 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
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dfindexeddb"
version = "20241105"
requires-python = ">=3.8"
description = "dfindexeddb is an experimental Python tool for performing digital forensic analysis of IndexedDB and leveldb files."
license = {file = "LICENSE"}
authors = [{name = "Syd Pleno", email = "[email protected]"}]
maintainers = [
{name = "dfIndexeddb Developers", email = "[email protected]"},
]
dependencies = [
'python-snappy==0.6.1',
'zstd==1.5.5.1',
]
readme = {file = "README.md", content-type = "text/markdown"}
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
]
[project.optional-dependencies]
plugins = ["protobuf", "dfdatetime"]
[project.scripts]
dfindexeddb = "dfindexeddb.indexeddb.cli:App"
dfleveldb = "dfindexeddb.leveldb.cli:App"
[tool.setuptools]
packages = [
"dfindexeddb",
"dfindexeddb.indexeddb",
"dfindexeddb.indexeddb.chromium",
"dfindexeddb.indexeddb.firefox",
"dfindexeddb.indexeddb.safari",
"dfindexeddb.leveldb",
"dfindexeddb.leveldb.plugins",
]
[project.urls]
Homepage = "https://github.com/google/dfindexeddb"
Documentation = "https://github.com/google/dfindexeddb/tree/main/docs"
Repository = "https://github.com/google/dfindexeddb"
"Bug Tracker" = "https://github.com/google/dfindexeddb/issues"