genref 1.4.1__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.
- genref-1.4.1/PKG-INFO +45 -0
- genref-1.4.1/README +1 -0
- genref-1.4.1/genref/__init__.py +15 -0
- genref-1.4.1/genref.egg-info/PKG-INFO +45 -0
- genref-1.4.1/genref.egg-info/SOURCES.txt +9 -0
- genref-1.4.1/genref.egg-info/dependency_links.txt +1 -0
- genref-1.4.1/genref.egg-info/requires.txt +31 -0
- genref-1.4.1/genref.egg-info/top_level.txt +1 -0
- genref-1.4.1/pyproject.toml +113 -0
- genref-1.4.1/setup.cfg +4 -0
- genref-1.4.1/tests/test_requirements.py +26 -0
genref-1.4.1/PKG-INFO
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: genref
|
|
3
|
+
Version: 1.4.1
|
|
4
|
+
Summary: A simple console-application to manage project complexity.
|
|
5
|
+
Author-email: Helmut Konrad Schewe <helmutus@outlook.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/anaticulae/genref
|
|
8
|
+
Project-URL: Repository, https://github.com/anaticulae/genref
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
12
|
+
Requires-Python: >=3.12
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: callidus==1.7.1
|
|
15
|
+
Requires-Dist: capita==1.25.3
|
|
16
|
+
Requires-Dist: capita_ref==1.0.1
|
|
17
|
+
Requires-Dist: captions<2.0.0,>=1.0.1
|
|
18
|
+
Requires-Dist: codero==1.0.1
|
|
19
|
+
Requires-Dist: configos<2.0.0,>=1.0.4
|
|
20
|
+
Requires-Dist: decider-chapter==1.0.1
|
|
21
|
+
Requires-Dist: elementae<2.0.0,>=1.0.1
|
|
22
|
+
Requires-Dist: figureo==1.0.1
|
|
23
|
+
Requires-Dist: formulero==1.0.0
|
|
24
|
+
Requires-Dist: headnote==1.0.3
|
|
25
|
+
Requires-Dist: ibidem==1.0.2
|
|
26
|
+
Requires-Dist: indagator==1.0.2
|
|
27
|
+
Requires-Dist: indicibus==1.0.2
|
|
28
|
+
Requires-Dist: jamer==1.0.2
|
|
29
|
+
Requires-Dist: konradus<2.0.0,>=1.0.1
|
|
30
|
+
Requires-Dist: mundare==1.0.2
|
|
31
|
+
Requires-Dist: pagenumber==1.0.0
|
|
32
|
+
Requires-Dist: protoerror<4.0.0,>=3.20.4
|
|
33
|
+
Requires-Dist: reftable==1.0.0
|
|
34
|
+
Requires-Dist: tablero==1.0.1
|
|
35
|
+
Requires-Dist: texes<2.0.0,>=1.0.1
|
|
36
|
+
Requires-Dist: titulum==1.0.2
|
|
37
|
+
Requires-Dist: upainter<2.0.0,>=1.0.0
|
|
38
|
+
Requires-Dist: verbo<2.0.0,>=1.23.4
|
|
39
|
+
Requires-Dist: writers<2.0.0,>=1.7.1
|
|
40
|
+
Provides-Extra: dev
|
|
41
|
+
Requires-Dist: utilotest==1.1.1; extra == "dev"
|
|
42
|
+
Requires-Dist: gennex==1.1.0; extra == "dev"
|
|
43
|
+
Requires-Dist: hoverpower==1.7.0; extra == "dev"
|
|
44
|
+
|
|
45
|
+
# genex_reference
|
genref-1.4.1/README
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# genex_reference
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#==============================================================================
|
|
2
|
+
# C O P Y R I G H T
|
|
3
|
+
#------------------------------------------------------------------------------
|
|
4
|
+
# Copyright (c) 2020-2023 by Helmut Konrad Schewe. All rights reserved.
|
|
5
|
+
# This file is property of Helmut Konrad Schewe. Any unauthorized copy,
|
|
6
|
+
# use or distribution is an offensive act against international law and may
|
|
7
|
+
# be prosecuted under federal law. Its content is company confidential.
|
|
8
|
+
#==============================================================================
|
|
9
|
+
|
|
10
|
+
import importlib.metadata
|
|
11
|
+
import os
|
|
12
|
+
|
|
13
|
+
__version__ = importlib.metadata.version('genref')
|
|
14
|
+
|
|
15
|
+
ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: genref
|
|
3
|
+
Version: 1.4.1
|
|
4
|
+
Summary: A simple console-application to manage project complexity.
|
|
5
|
+
Author-email: Helmut Konrad Schewe <helmutus@outlook.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/anaticulae/genref
|
|
8
|
+
Project-URL: Repository, https://github.com/anaticulae/genref
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
12
|
+
Requires-Python: >=3.12
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: callidus==1.7.1
|
|
15
|
+
Requires-Dist: capita==1.25.3
|
|
16
|
+
Requires-Dist: capita_ref==1.0.1
|
|
17
|
+
Requires-Dist: captions<2.0.0,>=1.0.1
|
|
18
|
+
Requires-Dist: codero==1.0.1
|
|
19
|
+
Requires-Dist: configos<2.0.0,>=1.0.4
|
|
20
|
+
Requires-Dist: decider-chapter==1.0.1
|
|
21
|
+
Requires-Dist: elementae<2.0.0,>=1.0.1
|
|
22
|
+
Requires-Dist: figureo==1.0.1
|
|
23
|
+
Requires-Dist: formulero==1.0.0
|
|
24
|
+
Requires-Dist: headnote==1.0.3
|
|
25
|
+
Requires-Dist: ibidem==1.0.2
|
|
26
|
+
Requires-Dist: indagator==1.0.2
|
|
27
|
+
Requires-Dist: indicibus==1.0.2
|
|
28
|
+
Requires-Dist: jamer==1.0.2
|
|
29
|
+
Requires-Dist: konradus<2.0.0,>=1.0.1
|
|
30
|
+
Requires-Dist: mundare==1.0.2
|
|
31
|
+
Requires-Dist: pagenumber==1.0.0
|
|
32
|
+
Requires-Dist: protoerror<4.0.0,>=3.20.4
|
|
33
|
+
Requires-Dist: reftable==1.0.0
|
|
34
|
+
Requires-Dist: tablero==1.0.1
|
|
35
|
+
Requires-Dist: texes<2.0.0,>=1.0.1
|
|
36
|
+
Requires-Dist: titulum==1.0.2
|
|
37
|
+
Requires-Dist: upainter<2.0.0,>=1.0.0
|
|
38
|
+
Requires-Dist: verbo<2.0.0,>=1.23.4
|
|
39
|
+
Requires-Dist: writers<2.0.0,>=1.7.1
|
|
40
|
+
Provides-Extra: dev
|
|
41
|
+
Requires-Dist: utilotest==1.1.1; extra == "dev"
|
|
42
|
+
Requires-Dist: gennex==1.1.0; extra == "dev"
|
|
43
|
+
Requires-Dist: hoverpower==1.7.0; extra == "dev"
|
|
44
|
+
|
|
45
|
+
# genex_reference
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
callidus==1.7.1
|
|
2
|
+
capita==1.25.3
|
|
3
|
+
capita_ref==1.0.1
|
|
4
|
+
captions<2.0.0,>=1.0.1
|
|
5
|
+
codero==1.0.1
|
|
6
|
+
configos<2.0.0,>=1.0.4
|
|
7
|
+
decider-chapter==1.0.1
|
|
8
|
+
elementae<2.0.0,>=1.0.1
|
|
9
|
+
figureo==1.0.1
|
|
10
|
+
formulero==1.0.0
|
|
11
|
+
headnote==1.0.3
|
|
12
|
+
ibidem==1.0.2
|
|
13
|
+
indagator==1.0.2
|
|
14
|
+
indicibus==1.0.2
|
|
15
|
+
jamer==1.0.2
|
|
16
|
+
konradus<2.0.0,>=1.0.1
|
|
17
|
+
mundare==1.0.2
|
|
18
|
+
pagenumber==1.0.0
|
|
19
|
+
protoerror<4.0.0,>=3.20.4
|
|
20
|
+
reftable==1.0.0
|
|
21
|
+
tablero==1.0.1
|
|
22
|
+
texes<2.0.0,>=1.0.1
|
|
23
|
+
titulum==1.0.2
|
|
24
|
+
upainter<2.0.0,>=1.0.0
|
|
25
|
+
verbo<2.0.0,>=1.23.4
|
|
26
|
+
writers<2.0.0,>=1.7.1
|
|
27
|
+
|
|
28
|
+
[dev]
|
|
29
|
+
utilotest==1.1.1
|
|
30
|
+
gennex==1.1.0
|
|
31
|
+
hoverpower==1.7.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
genref
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [
|
|
3
|
+
"setuptools>=83.0.0",
|
|
4
|
+
"wheel>=0.46.3",
|
|
5
|
+
]
|
|
6
|
+
build-backend = "setuptools.build_meta"
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "genref"
|
|
10
|
+
version = "1.4.1"
|
|
11
|
+
description = "A simple console-application to manage project complexity."
|
|
12
|
+
requires-python = ">=3.12"
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "Helmut Konrad Schewe", email = "helmutus@outlook.com" },
|
|
15
|
+
]
|
|
16
|
+
dependencies = [
|
|
17
|
+
"callidus==1.7.1",
|
|
18
|
+
"capita==1.25.3",
|
|
19
|
+
"capita_ref==1.0.1",
|
|
20
|
+
"captions>=1.0.1,<2.0.0",
|
|
21
|
+
"codero==1.0.1",
|
|
22
|
+
"configos>=1.0.4,<2.0.0",
|
|
23
|
+
"decider-chapter==1.0.1",
|
|
24
|
+
"elementae>=1.0.1,<2.0.0",
|
|
25
|
+
"figureo==1.0.1",
|
|
26
|
+
"formulero==1.0.0",
|
|
27
|
+
"headnote==1.0.3",
|
|
28
|
+
"ibidem==1.0.2",
|
|
29
|
+
"indagator==1.0.2",
|
|
30
|
+
"indicibus==1.0.2",
|
|
31
|
+
"jamer==1.0.2",
|
|
32
|
+
"konradus>=1.0.1,<2.0.0",
|
|
33
|
+
"mundare==1.0.2",
|
|
34
|
+
"pagenumber==1.0.0",
|
|
35
|
+
"protoerror>=3.20.4,<4.0.0",
|
|
36
|
+
"reftable==1.0.0",
|
|
37
|
+
"tablero==1.0.1",
|
|
38
|
+
"texes>=1.0.1,<2.0.0",
|
|
39
|
+
"titulum==1.0.2",
|
|
40
|
+
"upainter>=1.0.0,<2.0.0",
|
|
41
|
+
"verbo>=1.23.4,<2.0.0",
|
|
42
|
+
"writers>=1.7.1,<2.0.0",
|
|
43
|
+
]
|
|
44
|
+
keywords = []
|
|
45
|
+
classifiers = [
|
|
46
|
+
"Programming Language :: Python :: 3.12",
|
|
47
|
+
"Programming Language :: Python :: 3.13",
|
|
48
|
+
"Programming Language :: Python :: 3.14",
|
|
49
|
+
]
|
|
50
|
+
license = "MIT"
|
|
51
|
+
license-files = [
|
|
52
|
+
"LICENSE",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[project.readme]
|
|
56
|
+
file = "README"
|
|
57
|
+
content-type = "text/markdown"
|
|
58
|
+
|
|
59
|
+
[project.optional-dependencies]
|
|
60
|
+
dev = [
|
|
61
|
+
"utilotest==1.1.1",
|
|
62
|
+
"gennex==1.1.0",
|
|
63
|
+
"hoverpower==1.7.0",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[project.urls]
|
|
67
|
+
Homepage = "https://github.com/anaticulae/genref"
|
|
68
|
+
Repository = "https://github.com/anaticulae/genref"
|
|
69
|
+
|
|
70
|
+
[tool.semantic_release]
|
|
71
|
+
version_toml = [
|
|
72
|
+
"pyproject.toml:project.version",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[tool.semantic_release.changelog]
|
|
76
|
+
mode = "init"
|
|
77
|
+
output_format = "md"
|
|
78
|
+
|
|
79
|
+
[tool.semantic_release.changelog.default_templates]
|
|
80
|
+
changelog_file = "CHANGELOG"
|
|
81
|
+
|
|
82
|
+
[tool.semantic_release.commit_parser_options]
|
|
83
|
+
patch_tags = [
|
|
84
|
+
"build",
|
|
85
|
+
"chore",
|
|
86
|
+
"ci",
|
|
87
|
+
"deps",
|
|
88
|
+
"docs",
|
|
89
|
+
"fix",
|
|
90
|
+
"perf",
|
|
91
|
+
"refactor",
|
|
92
|
+
"style",
|
|
93
|
+
"test",
|
|
94
|
+
]
|
|
95
|
+
minor_tags = [
|
|
96
|
+
"feat",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[tool.setuptools.packages.find]
|
|
100
|
+
where = [
|
|
101
|
+
".",
|
|
102
|
+
]
|
|
103
|
+
include = [
|
|
104
|
+
"genref",
|
|
105
|
+
]
|
|
106
|
+
exclude = [
|
|
107
|
+
"tests*",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[tool.hoverpower]
|
|
111
|
+
packages = [
|
|
112
|
+
"TECH",
|
|
113
|
+
]
|
genref-1.4.1/setup.cfg
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# C O P Y R I G H T
|
|
3
|
+
# -----------------------------------------------------------------------------
|
|
4
|
+
# Copyright (c) 2020-2023 by Helmut Konrad Schewe. All rights reserved.
|
|
5
|
+
# This file is property of Helmut Konrad Schewe. Any unauthorized copy,
|
|
6
|
+
# use or distribution is an offensive act against international law and may
|
|
7
|
+
# be prosecuted under federal law. Its content is company confidential.
|
|
8
|
+
# =============================================================================
|
|
9
|
+
|
|
10
|
+
import gennex
|
|
11
|
+
import hoverpower
|
|
12
|
+
|
|
13
|
+
import genref
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def test_generator_run(td):
|
|
17
|
+
hoverpower.setup(genref.ROOT)
|
|
18
|
+
files = [
|
|
19
|
+
hoverpower.TECH019_PDF,
|
|
20
|
+
]
|
|
21
|
+
gennex.extract(
|
|
22
|
+
files=files,
|
|
23
|
+
dest=td.tmpdir,
|
|
24
|
+
full=True,
|
|
25
|
+
pages='0:10',
|
|
26
|
+
)
|