-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 854 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dfdatetime"
version = "20260411"
description = "Digital Forensics date and time (dfDateTime)"
maintainers = [
{ name = "Log2Timeline maintainers", email = "log2timeline-maintainers@googlegroups.com" },
]
license = "Apache-2.0"
license-files = ["ACKNOWLEDGEMENTS", "AUTHORS", "LICENSE"]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
requires-python = ">=3.10"
[project.urls]
Documentation = "https://dfdatetime.readthedocs.io/en/latest"
Homepage = "https://github.com/log2timeline/dfdatetime"
Repository = "https://github.com/log2timeline/dfdatetime"
[tool.setuptools.packages.find]
where = ["."]
include = ["dfdatetime"]
exclude = ["docs", "tests", "tests.*", "utils"]