chisel 2.3.0__tar.gz → 2.3.2__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-2.3.0/src/chisel.egg-info → chisel-2.3.2}/PKG-INFO +6 -6
- chisel-2.3.2/pyproject.toml +45 -0
- chisel-2.3.2/setup.cfg +4 -0
- chisel-2.3.2/src/chisel/static/markdown-up.tar.gz +0 -0
- {chisel-2.3.0 → chisel-2.3.2/src/chisel.egg-info}/PKG-INFO +6 -6
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel.egg-info/SOURCES.txt +0 -1
- chisel-2.3.0/pyproject.toml +0 -2
- chisel-2.3.0/setup.cfg +0 -41
- chisel-2.3.0/src/chisel/static/markdown-up.tar.gz +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/LICENSE +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/README.md +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel/__init__.py +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel/action.py +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel/app.py +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel/doc.py +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel/request.py +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel/static/__init__.py +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel/static/chiselDoc.bare +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel/static/index.html +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel.egg-info/dependency_links.txt +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel.egg-info/requires.txt +0 -0
- {chisel-2.3.0 → chisel-2.3.2}/src/chisel.egg-info/top_level.txt +0 -0
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: chisel
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary: Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT
|
|
5
|
+
Author-email: "Craig A. Hobbs" <craigahobbs@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/craigahobbs/chisel
|
|
9
8
|
Keywords: api,json,framework,schema,wsgi
|
|
10
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
10
|
Classifier: Intended Audience :: Developers
|
|
12
11
|
Classifier: Operating System :: OS Independent
|
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.15
|
|
18
18
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
|
|
19
19
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "chisel"
|
|
7
|
+
version = "2.3.2"
|
|
8
|
+
description = "Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
keywords = ["api", "json", "framework", "schema", "wsgi"]
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Craig A. Hobbs", email = "craigahobbs@gmail.com"}
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 5 - Production/Stable",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Programming Language :: Python :: 3.13",
|
|
23
|
+
"Programming Language :: Python :: 3.14",
|
|
24
|
+
"Programming Language :: Python :: 3.15",
|
|
25
|
+
"Topic :: Internet :: WWW/HTTP :: WSGI",
|
|
26
|
+
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
|
27
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks"
|
|
28
|
+
]
|
|
29
|
+
dependencies = [
|
|
30
|
+
"schema-markdown >= 1.3.0, < 1.4.0"
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Homepage = "https://github.com/craigahobbs/chisel"
|
|
35
|
+
|
|
36
|
+
[tool.setuptools]
|
|
37
|
+
package-dir = {"" = "src"}
|
|
38
|
+
packages = ["chisel", "chisel.static"]
|
|
39
|
+
|
|
40
|
+
[tool.setuptools.package-data]
|
|
41
|
+
chisel = [
|
|
42
|
+
"static/*.bare",
|
|
43
|
+
"static/*.html",
|
|
44
|
+
"static/*.tar.gz"
|
|
45
|
+
]
|
chisel-2.3.2/setup.cfg
ADDED
|
Binary file
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: chisel
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary: Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT
|
|
5
|
+
Author-email: "Craig A. Hobbs" <craigahobbs@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/craigahobbs/chisel
|
|
9
8
|
Keywords: api,json,framework,schema,wsgi
|
|
10
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
10
|
Classifier: Intended Audience :: Developers
|
|
12
11
|
Classifier: Operating System :: OS Independent
|
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.15
|
|
18
18
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
|
|
19
19
|
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
|
|
20
20
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
chisel-2.3.0/pyproject.toml
DELETED
chisel-2.3.0/setup.cfg
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
[metadata]
|
|
2
|
-
name = chisel
|
|
3
|
-
version = 2.3.0
|
|
4
|
-
url = https://github.com/craigahobbs/chisel
|
|
5
|
-
author = Craig A. Hobbs
|
|
6
|
-
author_email = craigahobbs@gmail.com
|
|
7
|
-
license = MIT
|
|
8
|
-
description = Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
|
|
9
|
-
long_description = file:README.md
|
|
10
|
-
long_description_content_type = text/markdown
|
|
11
|
-
keywords = api, json, framework, schema, wsgi
|
|
12
|
-
classifiers =
|
|
13
|
-
Development Status :: 5 - Production/Stable
|
|
14
|
-
Intended Audience :: Developers
|
|
15
|
-
Operating System :: OS Independent
|
|
16
|
-
Programming Language :: Python :: 3.10
|
|
17
|
-
Programming Language :: Python :: 3.11
|
|
18
|
-
Programming Language :: Python :: 3.12
|
|
19
|
-
Programming Language :: Python :: 3.13
|
|
20
|
-
Programming Language :: Python :: 3.14
|
|
21
|
-
Topic :: Internet :: WWW/HTTP :: WSGI
|
|
22
|
-
Topic :: Internet :: WWW/HTTP :: WSGI :: Application
|
|
23
|
-
Topic :: Software Development :: Libraries :: Application Frameworks
|
|
24
|
-
|
|
25
|
-
[options]
|
|
26
|
-
packages = chisel, chisel.static
|
|
27
|
-
package_dir =
|
|
28
|
-
= src
|
|
29
|
-
install_requires =
|
|
30
|
-
schema-markdown >= 1.3.0, < 1.4.0
|
|
31
|
-
|
|
32
|
-
[options.package_data]
|
|
33
|
-
chisel =
|
|
34
|
-
static/*.bare
|
|
35
|
-
static/*.html
|
|
36
|
-
static/*.tar.gz
|
|
37
|
-
|
|
38
|
-
[egg_info]
|
|
39
|
-
tag_build =
|
|
40
|
-
tag_date = 0
|
|
41
|
-
|
|
Binary file
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|