-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
35 lines (32 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"ccl_chromium_reader",
"ccl_chromium_reader.serialization_formats",
"ccl_chromium_reader.storage_formats"
]
[project]
name = "ccl_chromium_reader"
version = "0.3.11"
authors = [
{ name="Alex Caithness", email="[email protected]" },
]
description = "(Sometimes partial) Python re-implementations of the technologies involved in reading various data sources in Chrome-esque applications."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
keywords = ["digital forensics", "dfir", "chrome", "chromium", "browser"]
dependencies = [
"Brotli",
"ccl_simplesnappy @ git+https://github.com/cclgroupltd/ccl_simplesnappy.git"
]
[project.urls]
Homepage = "https://github.com/cclgroupltd/ccl_chromium_reader"
Issues = "https://github.com/cclgroupltd/ccl_chromium_reader/issues"