-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dfdatetime"
version = "20260526"
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.black]
line-length = 88
target-version = ["py310"]
include = "\\.pyi?$"
[tool.docformatter]
black = true
non-cap = ["bytes:", "dfDateTime", "float:", "int:", "str:"]
non-strict = true
[tool.l2tdevtools]
name = "dfDateTime"
status = "alpha"
description = """
dfDateTime, or Digital Forensics date and time, provides date and time objects \
to preserve accuracy and precision. \
"""
[tool.setuptools]
package-dir = {"dfdatetime" = "dfdatetime"}