-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
41 lines (37 loc) · 1.14 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["debian*", "binaries*", "build*", "dist*"]
[project]
name = "time-decode"
version = "8.0.0"
dependencies = [
"PyQt6",
"python-dateutil",
"colorama",
"pytz",
"juliandate"
]
requires-python = ">=3.6"
authors = [
{name = "Corey Forman (digitalsleuth)", email = "[email protected]"}
]
maintainers = [
{name = "Corey Forman (digitalsleuth)", email = "[email protected]"}
]
description = "Python 3 timestamp decode/encode tool"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["digital forensics", "dfir", "timestamp", "decode", "encode"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"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"