docview 0.1.0__py3-none-any.whl

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.
docview/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ __author__ = 'Robbert Harms'
2
+ __date__ = '2015-01-01'
3
+ __email__ = 'robbert@xkls.nl'
4
+ __license__ = "LGPL v3"
5
+ __maintainer__ = "Robbert Harms"
6
+
7
+ from docview.__version__ import __version__
docview/__version__.py ADDED
@@ -0,0 +1,19 @@
1
+ __author__ = 'Robbert Harms'
2
+ __date__ = '2015-01-01'
3
+ __email__ = 'robbert@xkls.nl'
4
+ __license__ = "LGPL v3"
5
+ __maintainer__ = "Robbert Harms"
6
+
7
+
8
+ from importlib import metadata
9
+ from importlib.metadata import PackageNotFoundError
10
+ from pathlib import Path
11
+
12
+ import tomllib
13
+
14
+ try:
15
+ __version__ = metadata.version('docview')
16
+ except PackageNotFoundError:
17
+ with open(Path(__file__).parent.parent / 'pyproject.toml', 'rb') as f:
18
+ pyproject = tomllib.load(f)
19
+ __version__ = pyproject['project']['version']
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: docview
3
+ Version: 0.1.0
4
+ Summary: Main package for the docview ecosystem.
5
+ Keywords: Document rendering,Markdown,Synchronization
6
+ Author-email: Robbert Harms <robbert@xkls.nl>
7
+ Requires-Python: >=3.14
8
+ Description-Content-Type: text/x-rst
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Natural Language :: English
14
+ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
15
+ Classifier: Programming Language :: Python :: 3.14
16
+ Classifier: Topic :: Communications
17
+ License-File: LICENSE
18
+ Requires-Dist: sphinx~=7.2.6 ; extra == "doc"
19
+ Requires-Dist: git-cliff~=2.8.0 ; extra == "doc"
20
+ Requires-Dist: pytest~=8.0.2 ; extra == "test"
21
+ Requires-Dist: pytest-check~=2.3.1 ; extra == "test"
22
+ Requires-Dist: pytest-cov~=4.1.0 ; extra == "test"
23
+ Requires-Dist: pytest-html~=4.1.1 ; extra == "test"
24
+ Requires-Dist: tox~=4.14.1 ; extra == "test"
25
+ Project-URL: homepage, https://github.com/robbert-harms/docview
26
+ Provides-Extra: doc
27
+ Provides-Extra: test
28
+
29
+ #######
30
+ DocView
31
+ #######
32
+ Main package for the DocView ecosystem.
33
+
@@ -0,0 +1,7 @@
1
+ docview/__init__.py,sha256=BDkrxjtP_oCNpt0EDioJEHxGIoBYul5vfUG9uX-sdy8,185
2
+ docview/__version__.py,sha256=o__PYGhiEJT33EYg8DvJ7YEyJ4jWM9IIeyMCZIMJnQ4,512
3
+ docview-0.1.0.dist-info/entry_points.txt,sha256=7C-fwvEjyAtZH0oROsY5mc3juR5nBzggRy_O3zxX8Mk,43
4
+ docview-0.1.0.dist-info/licenses/LICENSE,sha256=iNf3xKDEtaXdAfcDLrbGsMn1IVniOFNASM1S_dp62MY,7707
5
+ docview-0.1.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
6
+ docview-0.1.0.dist-info/METADATA,sha256=JvRJw2YlwXvdaoaX1wm4DLCwoxMFqjEaYYSL9yapC8w,1185
7
+ docview-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: flit 3.12.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ docview=docview.cli:app
3
+
@@ -0,0 +1,168 @@
1
+ Copyright (c) 2015, Robbert Harms
2
+ All rights reserved.
3
+
4
+ GNU LESSER GENERAL PUBLIC LICENSE
5
+ Version 3, 29 June 2007
6
+
7
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
8
+ Everyone is permitted to copy and distribute verbatim copies
9
+ of this license document, but changing it is not allowed.
10
+
11
+
12
+ This version of the GNU Lesser General Public License incorporates
13
+ the terms and conditions of version 3 of the GNU General Public
14
+ License, supplemented by the additional permissions listed below.
15
+
16
+ 0. Additional Definitions.
17
+
18
+ As used herein, "this License" refers to version 3 of the GNU Lesser
19
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
20
+ General Public License.
21
+
22
+ "The Library" refers to a covered work governed by this License,
23
+ other than an Application or a Combined Work as defined below.
24
+
25
+ An "Application" is any work that makes use of an interface provided
26
+ by the Library, but which is not otherwise based on the Library.
27
+ Defining a subclass of a class defined by the Library is deemed a mode
28
+ of using an interface provided by the Library.
29
+
30
+ A "Combined Work" is a work produced by combining or linking an
31
+ Application with the Library. The particular version of the Library
32
+ with which the Combined Work was made is also called the "Linked
33
+ Version".
34
+
35
+ The "Minimal Corresponding Source" for a Combined Work means the
36
+ Corresponding Source for the Combined Work, excluding any source code
37
+ for portions of the Combined Work that, considered in isolation, are
38
+ based on the Application, and not on the Linked Version.
39
+
40
+ The "Corresponding Application Code" for a Combined Work means the
41
+ object code and/or source code for the Application, including any data
42
+ and utility programs needed for reproducing the Combined Work from the
43
+ Application, but excluding the System Libraries of the Combined Work.
44
+
45
+ 1. Exception to Section 3 of the GNU GPL.
46
+
47
+ You may convey a covered work under sections 3 and 4 of this License
48
+ without being bound by section 3 of the GNU GPL.
49
+
50
+ 2. Conveying Modified Versions.
51
+
52
+ If you modify a copy of the Library, and, in your modifications, a
53
+ facility refers to a function or data to be supplied by an Application
54
+ that uses the facility (other than as an argument passed when the
55
+ facility is invoked), then you may convey a copy of the modified
56
+ version:
57
+
58
+ a) under this License, provided that you make a good faith effort to
59
+ ensure that, in the event an Application does not supply the
60
+ function or data, the facility still operates, and performs
61
+ whatever part of its purpose remains meaningful, or
62
+
63
+ b) under the GNU GPL, with none of the additional permissions of
64
+ this License applicable to that copy.
65
+
66
+ 3. Object Code Incorporating Material from Library Header Files.
67
+
68
+ The object code form of an Application may incorporate material from
69
+ a header file that is part of the Library. You may convey such object
70
+ code under terms of your choice, provided that, if the incorporated
71
+ material is not limited to numerical parameters, data structure
72
+ layouts and accessors, or small macros, inline functions and templates
73
+ (ten or fewer lines in length), you do both of the following:
74
+
75
+ a) Give prominent notice with each copy of the object code that the
76
+ Library is used in it and that the Library and its use are
77
+ covered by this License.
78
+
79
+ b) Accompany the object code with a copy of the GNU GPL and this license
80
+ document.
81
+
82
+ 4. Combined Works.
83
+
84
+ You may convey a Combined Work under terms of your choice that,
85
+ taken together, effectively do not restrict modification of the
86
+ portions of the Library contained in the Combined Work and reverse
87
+ engineering for debugging such modifications, if you also do each of
88
+ the following:
89
+
90
+ a) Give prominent notice with each copy of the Combined Work that
91
+ the Library is used in it and that the Library and its use are
92
+ covered by this License.
93
+
94
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
95
+ document.
96
+
97
+ c) For a Combined Work that displays copyright notices during
98
+ execution, include the copyright notice for the Library among
99
+ these notices, as well as a reference directing the user to the
100
+ copies of the GNU GPL and this license document.
101
+
102
+ d) Do one of the following:
103
+
104
+ 0) Convey the Minimal Corresponding Source under the terms of this
105
+ License, and the Corresponding Application Code in a form
106
+ suitable for, and under terms that permit, the user to
107
+ recombine or relink the Application with a modified version of
108
+ the Linked Version to produce a modified Combined Work, in the
109
+ manner specified by section 6 of the GNU GPL for conveying
110
+ Corresponding Source.
111
+
112
+ 1) Use a suitable shared library mechanism for linking with the
113
+ Library. A suitable mechanism is one that (a) uses at run time
114
+ a copy of the Library already present on the user's computer
115
+ system, and (b) will operate properly with a modified version
116
+ of the Library that is interface-compatible with the Linked
117
+ Version.
118
+
119
+ e) Provide Installation Information, but only if you would otherwise
120
+ be required to provide such information under section 6 of the
121
+ GNU GPL, and only to the extent that such information is
122
+ necessary to install and execute a modified version of the
123
+ Combined Work produced by recombining or relinking the
124
+ Application with a modified version of the Linked Version. (If
125
+ you use option 4d0, the Installation Information must accompany
126
+ the Minimal Corresponding Source and Corresponding Application
127
+ Code. If you use option 4d1, you must provide the Installation
128
+ Information in the manner specified by section 6 of the GNU GPL
129
+ for conveying Corresponding Source.)
130
+
131
+ 5. Combined Libraries.
132
+
133
+ You may place library facilities that are a work based on the
134
+ Library side by side in a single library together with other library
135
+ facilities that are not Applications and are not covered by this
136
+ License, and convey such a combined library under terms of your
137
+ choice, if you do both of the following:
138
+
139
+ a) Accompany the combined library with a copy of the same work based
140
+ on the Library, uncombined with any other library facilities,
141
+ conveyed under the terms of this License.
142
+
143
+ b) Give prominent notice with the combined library that part of it
144
+ is a work based on the Library, and explaining where to find the
145
+ accompanying uncombined form of the same work.
146
+
147
+ 6. Revised Versions of the GNU Lesser General Public License.
148
+
149
+ The Free Software Foundation may publish revised and/or new versions
150
+ of the GNU Lesser General Public License from time to time. Such new
151
+ versions will be similar in spirit to the present version, but may
152
+ differ in detail to address new problems or concerns.
153
+
154
+ Each version is given a distinguishing version number. If the
155
+ Library as you received it specifies that a certain numbered version
156
+ of the GNU Lesser General Public License "or any later version"
157
+ applies to it, you have the option of following the terms and
158
+ conditions either of that published version or of any later version
159
+ published by the Free Software Foundation. If the Library as you
160
+ received it does not specify a version number of the GNU Lesser
161
+ General Public License, you may choose any version of the GNU Lesser
162
+ General Public License ever published by the Free Software Foundation.
163
+
164
+ If the Library as you received it specifies that a proxy can decide
165
+ whether future versions of the GNU Lesser General Public License shall
166
+ apply, that proxy's public statement of acceptance of any version is
167
+ permanent authorization for you to choose that version for the
168
+ Library.