dissect.ole 3.5.dev1__tar.gz → 3.6__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,13 +1,23 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dissect.ole
3
- Version: 3.5.dev1
3
+ Version: 3.6
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
7
7
  Project-URL: homepage, https://dissect.tools
8
8
  Project-URL: documentation, https://docs.dissect.tools/en/latest/projects/dissect.ole
9
9
  Project-URL: repository, https://github.com/fox-it/dissect.ole
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Information Technology
14
+ Classifier: License :: OSI Approved
15
+ Classifier: Operating System :: OS Independent
10
16
  Classifier: Programming Language :: Python :: 3
17
+ Classifier: Topic :: Internet :: Log Analysis
18
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
19
+ Classifier: Topic :: Security
20
+ Classifier: Topic :: Utilities
11
21
  Requires-Python: ~=3.9
12
22
  Description-Content-Type: text/markdown
13
23
  License-File: LICENSE
@@ -1,13 +1,23 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dissect.ole
3
- Version: 3.5.dev1
3
+ Version: 3.6
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
7
7
  Project-URL: homepage, https://dissect.tools
8
8
  Project-URL: documentation, https://docs.dissect.tools/en/latest/projects/dissect.ole
9
9
  Project-URL: repository, https://github.com/fox-it/dissect.ole
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Information Technology
14
+ Classifier: License :: OSI Approved
15
+ Classifier: Operating System :: OS Independent
10
16
  Classifier: Programming Language :: Python :: 3
17
+ Classifier: Topic :: Internet :: Log Analysis
18
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
19
+ Classifier: Topic :: Security
20
+ Classifier: Topic :: Utilities
11
21
  Requires-Python: ~=3.9
12
22
  Description-Content-Type: text/markdown
13
23
  License-File: LICENSE
@@ -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
@@ -12,7 +12,17 @@ authors = [
12
12
  {name = "Dissect Team", email = "dissect@fox-it.com"}
13
13
  ]
14
14
  classifiers = [
15
+ "Development Status :: 5 - Production/Stable",
16
+ "Environment :: Console",
17
+ "Intended Audience :: Developers",
18
+ "Intended Audience :: Information Technology",
19
+ "License :: OSI Approved",
20
+ "Operating System :: OS Independent",
15
21
  "Programming Language :: Python :: 3",
22
+ "Topic :: Internet :: Log Analysis",
23
+ "Topic :: Scientific/Engineering :: Information Analysis",
24
+ "Topic :: Security",
25
+ "Topic :: Utilities",
16
26
  ]
17
27
  dependencies = [
18
28
  "dissect.cstruct>=3.0.dev,<4.0.dev",
@@ -40,4 +50,3 @@ license-files = ["LICENSE", "COPYRIGHT"]
40
50
  include = ["dissect.*"]
41
51
 
42
52
  [tool.setuptools_scm]
43
- local_scheme = "no-local-version"
@@ -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
File without changes