-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.08 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
46
47
48
49
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "l2tdevtools"
version = "20260527"
description = "Development tools for the log2timeline projects"
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.12"
[project.urls]
Homepage = "https://github.com/log2timeline/l2tdevtools"
Repository = "https://github.com/log2timeline/l2tdevtools"
[tool.black]
line-length = 88
target-version = ["py312"]
include = "\\.pyi?$"
force-exclude = """
(
data/
| test_data/linter_fail.py
)
"""
[tool.docformatter]
black = true
non-cap = ["str:"]
non-strict = true
[tool.l2tdevtools]
name = "log2timeline development tools"
status = "alpha"
description = """
Development tools for the log2timeline projects. \
"""
[tool.setuptools]
package-dir = {"l2tdevtools" = "l2tdevtools"}