Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "acstore"
version = "20260515"
version = "20260516"
description = "Attribute Container Storage (ACStore)"
maintainers = [
{ name = "Log2Timeline maintainers", email = "log2timeline-maintainers@googlegroups.com" },
Expand All @@ -31,5 +31,10 @@ line-length = 88
target-version = ["py310"]
include = "\\.pyi?$"

[tool.docformatter]
black = true
non-cap = []
non-strict = true

[tool.setuptools]
package-dir = {"acstore" = "acstore"}
20 changes: 18 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3{10,11,12,13,14},black,coverage,docs,pylint,wheel,yamllint
envlist = py3{10,11,12,13,14},black,coverage,docformatter,docs,pylint,wheel,yamllint

[testenv]
allowlist_externals = ./run_tests.py
Expand Down Expand Up @@ -37,7 +37,23 @@ deps =
setuptools >= 65
commands =
black --version
black --check .
black .

[testenv:docformatter]
skipsdist = True
pip_pre = True
passenv =
CFLAGS
CPPFLAGS
LDFLAGS
setenv =
PYTHONPATH = {toxinidir}
deps =
docformatter
setuptools >= 65
commands =
docformatter --version
docformatter --in-place --recursive acstore tests

[testenv:docs]
usedevelop = True
Expand Down
Loading