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
|
[build-system]
requires = ["setuptools >= 77.0.30"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["debian*", "binaries*", "build*", "dist*"]
[project]
name = "time-decode"
version = "10.3.1"
dependencies = [
"PyQt6",
"colorama",
"juliandate",
"prettytable",
"python-ulid>=3.1.0",
"bbpb"
]
requires-python = ">=3.9"
authors = [
{name = "Corey Forman (digitalsleuth)", email = "github@digitalsleuth.ca"}
]
maintainers = [
{name = "Corey Forman (digitalsleuth)", email = "github@digitalsleuth.ca"}
]
description = "Python 3 timestamp decode/encode tool"
readme = "README.md"
keywords = ["digital forensics", "dfir", "timestamp", "decode", "encode"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/digitalsleuth/time_decode"
References = "https://github.com/digitalsleuth/time_decode/blob/master/REFERENCES.md"
[project.scripts]
time-decode = "time_decode.time_decode:main"
|