dissect.ole 3.5.dev1__tar.gz → 3.6.dev1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dissect.ole
3
- Version: 3.5.dev1
3
+ Version: 3.6.dev1
4
4
  Summary: A Dissect module implementing a parser for the Object Linking & Embedding (OLE) format, commonly used by document editors on Windows operating systems
5
5
  Author-email: Dissect Team <dissect@fox-it.com>
6
6
  License: Affero General Public License v3
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dissect.ole
3
- Version: 3.5.dev1
3
+ Version: 3.6.dev1
4
4
  Summary: A Dissect module implementing a parser for the Object Linking & Embedding (OLE) format, commonly used by document editors on Windows operating systems
5
5
  Author-email: Dissect Team <dissect@fox-it.com>
6
6
  License: Affero General Public License v3
@@ -12,4 +12,7 @@ dissect.ole.egg-info/top_level.txt
12
12
  dissect/ole/__init__.py
13
13
  dissect/ole/c_ole.py
14
14
  dissect/ole/exceptions.py
15
- dissect/ole/ole.py
15
+ dissect/ole/ole.py
16
+ tests/docs/Makefile
17
+ tests/docs/conf.py
18
+ tests/docs/index.rst
@@ -0,0 +1,24 @@
1
+ # Minimal makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line, and also
5
+ # from the environment for the first two.
6
+ SPHINXOPTS ?= -jauto
7
+ SPHINXBUILD ?= sphinx-build
8
+ SOURCEDIR = .
9
+ BUILDDIR = build
10
+
11
+ # Put it first so that "make" without argument is like "make help".
12
+ help:
13
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14
+
15
+ .PHONY: clean help Makefile
16
+
17
+ clean: Makefile
18
+ rm -rf api
19
+ @$(SPHINXBUILD) -M clean "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
20
+
21
+ # Catch-all target: route all unknown targets to Sphinx using the new
22
+ # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
23
+ %: Makefile
24
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
@@ -0,0 +1,34 @@
1
+ extensions = [
2
+ "autoapi.extension",
3
+ "sphinx.ext.autodoc",
4
+ "sphinx.ext.autosectionlabel",
5
+ "sphinx.ext.doctest",
6
+ "sphinx.ext.napoleon",
7
+ "sphinx_argparse_cli",
8
+ ]
9
+
10
+ exclude_patterns = []
11
+
12
+ html_theme = "furo"
13
+
14
+ autoapi_type = "python"
15
+ autoapi_dirs = ["../../dissect/"]
16
+ autoapi_ignore = ["*tests*", "*.tox*", "*venv*", "*examples*"]
17
+ autoapi_python_use_implicit_namespaces = True
18
+ autoapi_add_toctree_entry = False
19
+ autoapi_root = "api"
20
+ autoapi_options = [
21
+ "members",
22
+ "undoc-members",
23
+ "show-inheritance",
24
+ "show-module-summary",
25
+ "special-members",
26
+ "imported-members",
27
+ ]
28
+ autoapi_keep_files = True
29
+ autoapi_template_dir = "_templates/autoapi"
30
+
31
+ autodoc_typehints = "signature"
32
+ autodoc_member_order = "groupwise"
33
+
34
+ autosectionlabel_prefix_document = True
@@ -0,0 +1,8 @@
1
+ API Reference
2
+ =============
3
+
4
+ .. toctree::
5
+ :maxdepth: 1
6
+ :glob:
7
+
8
+ /api/*/*/index
@@ -55,3 +55,24 @@ extend-ignore =
55
55
  # See https://github.com/PyCQA/pycodestyle/issues/373
56
56
  E203,
57
57
  statistics = True
58
+
59
+ [testenv:docs-build]
60
+ allowlist_externals = make
61
+ deps =
62
+ sphinx
63
+ sphinx-autoapi
64
+ sphinx_argparse_cli
65
+ sphinx-copybutton
66
+ sphinx-design
67
+ furo
68
+
69
+ commands =
70
+ make -C tests/docs clean
71
+ make -C tests/docs html
72
+
73
+ [testenv:docs-linkcheck]
74
+ allowlist_externals = make
75
+ deps = {[testenv:docs-build]deps}
76
+ commands =
77
+ make -C tests/docs clean
78
+ make -C tests/docs linkcheck
File without changes
File without changes
File without changes
File without changes