chisel 1.2.2__tar.gz → 1.2.4__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.
- {chisel-1.2.2/src/chisel.egg-info → chisel-1.2.4}/PKG-INFO +7 -4
- {chisel-1.2.2 → chisel-1.2.4}/README.rst +4 -2
- {chisel-1.2.2 → chisel-1.2.4}/setup.cfg +2 -2
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel/doc.py +27 -1
- {chisel-1.2.2 → chisel-1.2.4/src/chisel.egg-info}/PKG-INFO +7 -4
- {chisel-1.2.2 → chisel-1.2.4}/LICENSE +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/pyproject.toml +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel/__init__.py +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel/action.py +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel/app.py +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel/request.py +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel.egg-info/SOURCES.txt +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel.egg-info/dependency_links.txt +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel.egg-info/requires.txt +0 -0
- {chisel-1.2.2 → chisel-1.2.4}/src/chisel.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: chisel
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
|
|
5
5
|
Home-page: https://github.com/craigahobbs/chisel
|
|
6
6
|
Author: Craig A. Hobbs
|
|
@@ -11,16 +11,17 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.8
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
|
|
20
20
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
22
22
|
Description-Content-Type: text/x-rst
|
|
23
23
|
License-File: LICENSE
|
|
24
|
+
Requires-Dist: schema-markdown>=1.2.0
|
|
24
25
|
|
|
25
26
|
chisel
|
|
26
27
|
======
|
|
@@ -117,7 +118,9 @@ available `here <https://craigahobbs.github.io/chisel/example/#var.vName='chisel
|
|
|
117
118
|
Development
|
|
118
119
|
-----------
|
|
119
120
|
|
|
120
|
-
This
|
|
121
|
-
using `python-template <https://github.com/craigahobbs/python-template#readme>`__ as follows
|
|
121
|
+
This package is developed using `python-build <https://github.com/craigahobbs/python-build#readme>`__.
|
|
122
|
+
It was started using `python-template <https://github.com/craigahobbs/python-template#readme>`__ as follows:
|
|
123
|
+
|
|
124
|
+
.. code-block:: sh
|
|
122
125
|
|
|
123
126
|
template-specialize python-template/template/ chisel/ -k package chisel -k name 'Craig A. Hobbs' -k email 'craigahobbs@gmail.com' -k github 'craigahobbs' -k nomain 1
|
|
@@ -93,7 +93,9 @@ available `here <https://craigahobbs.github.io/chisel/example/#var.vName='chisel
|
|
|
93
93
|
Development
|
|
94
94
|
-----------
|
|
95
95
|
|
|
96
|
-
This
|
|
97
|
-
using `python-template <https://github.com/craigahobbs/python-template#readme>`__ as follows
|
|
96
|
+
This package is developed using `python-build <https://github.com/craigahobbs/python-build#readme>`__.
|
|
97
|
+
It was started using `python-template <https://github.com/craigahobbs/python-template#readme>`__ as follows:
|
|
98
|
+
|
|
99
|
+
.. code-block:: sh
|
|
98
100
|
|
|
99
101
|
template-specialize python-template/template/ chisel/ -k package chisel -k name 'Craig A. Hobbs' -k email 'craigahobbs@gmail.com' -k github 'craigahobbs' -k nomain 1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = chisel
|
|
3
|
-
version = 1.2.
|
|
3
|
+
version = 1.2.4
|
|
4
4
|
url = https://github.com/craigahobbs/chisel
|
|
5
5
|
author = Craig A. Hobbs
|
|
6
6
|
author_email = craigahobbs@gmail.com
|
|
@@ -14,11 +14,11 @@ classifiers =
|
|
|
14
14
|
Intended Audience :: Developers
|
|
15
15
|
License :: OSI Approved :: MIT License
|
|
16
16
|
Operating System :: OS Independent
|
|
17
|
-
Programming Language :: Python :: 3.7
|
|
18
17
|
Programming Language :: Python :: 3.8
|
|
19
18
|
Programming Language :: Python :: 3.9
|
|
20
19
|
Programming Language :: Python :: 3.10
|
|
21
20
|
Programming Language :: Python :: 3.11
|
|
21
|
+
Programming Language :: Python :: 3.12
|
|
22
22
|
Topic :: Internet :: WWW/HTTP :: WSGI
|
|
23
23
|
Topic :: Internet :: WWW/HTTP :: WSGI :: Application
|
|
24
24
|
Topic :: Software Development :: Libraries :: Application Frameworks
|
|
@@ -17,10 +17,36 @@ CHISEL_DOC_HTML = b'''\
|
|
|
17
17
|
<!DOCTYPE html>
|
|
18
18
|
<html lang="en">
|
|
19
19
|
<head>
|
|
20
|
-
<title>Chisel</title>
|
|
20
|
+
<title>Chisel Documentation Application</title>
|
|
21
21
|
<meta charset="UTF-8">
|
|
22
|
+
<meta name="description" content="Chisel Documentation Application">
|
|
22
23
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
23
24
|
<link rel="stylesheet" href="https://craigahobbs.github.io/markdown-up/app.css">
|
|
25
|
+
|
|
26
|
+
<!-- Preloads -->
|
|
27
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/bare-script/lib/data.js" as="script">
|
|
28
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/bare-script/lib/library.js" as="script">
|
|
29
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/bare-script/lib/model.js" as="script">
|
|
30
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/bare-script/lib/parser.js" as="script">
|
|
31
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/bare-script/lib/runtime.js" as="script">
|
|
32
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/bare-script/lib/runtimeAsync.js" as="script">
|
|
33
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/element-model/lib/elementModel.js" as="script">
|
|
34
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/lib/app.js" as="script">
|
|
35
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/lib/dataTable.js" as="script">
|
|
36
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/lib/dataUtil.js" as="script">
|
|
37
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/lib/lineChart.js" as="script">
|
|
38
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/lib/script.js" as="script">
|
|
39
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/lib/scriptLibrary.js" as="script">
|
|
40
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/markdown-model/lib/elements.js" as="script">
|
|
41
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/markdown-model/lib/parser.js" as="script">
|
|
42
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/schema-markdown-doc/lib/schemaMarkdownDoc.js" as="script">
|
|
43
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/schema-markdown/lib/encode.js" as="script">
|
|
44
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/schema-markdown/lib/parser.js" as="script">
|
|
45
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/schema-markdown/lib/schema.js" as="script">
|
|
46
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/schema-markdown/lib/schemaUtil.js" as="script">
|
|
47
|
+
<link rel="modulepreload" href="https://craigahobbs.github.io/markdown-up/schema-markdown/lib/typeModel.js" as="script">
|
|
48
|
+
<link rel="preload" href="https://craigahobbs.github.io/markdown-up/app.css" as="style">
|
|
49
|
+
<link rel="preload" href="https://craigahobbs.github.io/markdown-up/markdown-model/static/markdown-model.css" as="style">
|
|
24
50
|
</head>
|
|
25
51
|
<body>
|
|
26
52
|
</body>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: chisel
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
|
|
5
5
|
Home-page: https://github.com/craigahobbs/chisel
|
|
6
6
|
Author: Craig A. Hobbs
|
|
@@ -11,16 +11,17 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.8
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
|
|
20
20
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
|
|
21
21
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
22
22
|
Description-Content-Type: text/x-rst
|
|
23
23
|
License-File: LICENSE
|
|
24
|
+
Requires-Dist: schema-markdown>=1.2.0
|
|
24
25
|
|
|
25
26
|
chisel
|
|
26
27
|
======
|
|
@@ -117,7 +118,9 @@ available `here <https://craigahobbs.github.io/chisel/example/#var.vName='chisel
|
|
|
117
118
|
Development
|
|
118
119
|
-----------
|
|
119
120
|
|
|
120
|
-
This
|
|
121
|
-
using `python-template <https://github.com/craigahobbs/python-template#readme>`__ as follows
|
|
121
|
+
This package is developed using `python-build <https://github.com/craigahobbs/python-build#readme>`__.
|
|
122
|
+
It was started using `python-template <https://github.com/craigahobbs/python-template#readme>`__ as follows:
|
|
123
|
+
|
|
124
|
+
.. code-block:: sh
|
|
122
125
|
|
|
123
126
|
template-specialize python-template/template/ chisel/ -k package chisel -k name 'Craig A. Hobbs' -k email 'craigahobbs@gmail.com' -k github 'craigahobbs' -k nomain 1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|