tinydantic 0.1.3__tar.gz → 0.1.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.
- {tinydantic-0.1.3 → tinydantic-0.1.4}/.pre-commit-config.yaml +4 -2
- {tinydantic-0.1.3 → tinydantic-0.1.4}/PKG-INFO +1 -1
- tinydantic-0.1.4/docs/index.md +7 -0
- tinydantic-0.1.4/docs/installation.md +7 -0
- tinydantic-0.1.4/mkdocs.yml +36 -0
- tinydantic-0.1.3/docs/index.md +0 -1
- tinydantic-0.1.3/mkdocs.yml +0 -11
- {tinydantic-0.1.3 → tinydantic-0.1.4}/.github/workflows/publish.yml +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/.github/workflows/test.yml +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/.gitignore +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/.readthedocs.yaml +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/.vscode/extensions.json +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/LICENSE.md +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/LICENSES/Apache-2.0.txt +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/LICENSES/CC-BY-4.0.txt +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/LICENSES/MIT.txt +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/README.md +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/REUSE.toml +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/pyproject.toml +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/src/tinydantic/__about__.py +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/src/tinydantic/__init__.py +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/src/tinydantic/py.typed +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/taplo.toml +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/tests/__init__.py +0 -0
- {tinydantic-0.1.3 → tinydantic-0.1.4}/tests/test_version.py +0 -0
|
@@ -19,8 +19,10 @@ repos:
|
|
|
19
19
|
- id: check-symlinks
|
|
20
20
|
- id: check-toml
|
|
21
21
|
- id: check-xml
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
# TODO(cdwilson): breaks with `could not determine a constructor for the
|
|
23
|
+
# tag 'tag:yaml.org,2002:python/name:materialx.emoji.twemoji'`
|
|
24
|
+
# - id: check-yaml
|
|
25
|
+
# args: [--allow-multiple-documents]
|
|
24
26
|
- id: debug-statements
|
|
25
27
|
- id: destroyed-symlinks
|
|
26
28
|
- id: detect-aws-credentials
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: tinydantic
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Project-URL: Documentation, https://github.com/cdwilson/tinydantic#readme
|
|
5
5
|
Project-URL: Issues, https://github.com/cdwilson/tinydantic/issues
|
|
6
6
|
Project-URL: Source, https://github.com/cdwilson/tinydantic
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: Chris Wilson <christopher.david.wilson@gmail.com>
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
4
|
+
|
|
5
|
+
site_name: tinydantic
|
|
6
|
+
site_url: https://tinydantic.dev
|
|
7
|
+
repo_url: https://github.com/cdwilson/tinydantic
|
|
8
|
+
repo_name: cdwilson/tinydantic
|
|
9
|
+
edit_uri: edit/main/docs/
|
|
10
|
+
copyright: Copyright © Chris Wilson
|
|
11
|
+
theme:
|
|
12
|
+
name: material
|
|
13
|
+
icon:
|
|
14
|
+
repo: fontawesome/brands/github
|
|
15
|
+
edit: material/pencil
|
|
16
|
+
view: material/eye
|
|
17
|
+
features:
|
|
18
|
+
- content.action.view
|
|
19
|
+
- content.action.edit
|
|
20
|
+
- navigation.tabs
|
|
21
|
+
- navigation.footer
|
|
22
|
+
plugins:
|
|
23
|
+
- search
|
|
24
|
+
- mkdocstrings
|
|
25
|
+
markdown_extensions:
|
|
26
|
+
- admonition
|
|
27
|
+
- pymdownx.details
|
|
28
|
+
- pymdownx.superfences
|
|
29
|
+
- attr_list
|
|
30
|
+
- pymdownx.emoji:
|
|
31
|
+
emoji_index: !!python/name:material.extensions.emoji.twemoji
|
|
32
|
+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
|
|
33
|
+
nav:
|
|
34
|
+
- Get Started:
|
|
35
|
+
- index.md
|
|
36
|
+
- installation.md
|
tinydantic-0.1.3/docs/index.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# Get Started
|
tinydantic-0.1.3/mkdocs.yml
DELETED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|