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.
Files changed (25) hide show
  1. {tinydantic-0.1.3 → tinydantic-0.1.4}/.pre-commit-config.yaml +4 -2
  2. {tinydantic-0.1.3 → tinydantic-0.1.4}/PKG-INFO +1 -1
  3. tinydantic-0.1.4/docs/index.md +7 -0
  4. tinydantic-0.1.4/docs/installation.md +7 -0
  5. tinydantic-0.1.4/mkdocs.yml +36 -0
  6. tinydantic-0.1.3/docs/index.md +0 -1
  7. tinydantic-0.1.3/mkdocs.yml +0 -11
  8. {tinydantic-0.1.3 → tinydantic-0.1.4}/.github/workflows/publish.yml +0 -0
  9. {tinydantic-0.1.3 → tinydantic-0.1.4}/.github/workflows/test.yml +0 -0
  10. {tinydantic-0.1.3 → tinydantic-0.1.4}/.gitignore +0 -0
  11. {tinydantic-0.1.3 → tinydantic-0.1.4}/.readthedocs.yaml +0 -0
  12. {tinydantic-0.1.3 → tinydantic-0.1.4}/.vscode/extensions.json +0 -0
  13. {tinydantic-0.1.3 → tinydantic-0.1.4}/LICENSE.md +0 -0
  14. {tinydantic-0.1.3 → tinydantic-0.1.4}/LICENSES/Apache-2.0.txt +0 -0
  15. {tinydantic-0.1.3 → tinydantic-0.1.4}/LICENSES/CC-BY-4.0.txt +0 -0
  16. {tinydantic-0.1.3 → tinydantic-0.1.4}/LICENSES/MIT.txt +0 -0
  17. {tinydantic-0.1.3 → tinydantic-0.1.4}/README.md +0 -0
  18. {tinydantic-0.1.3 → tinydantic-0.1.4}/REUSE.toml +0 -0
  19. {tinydantic-0.1.3 → tinydantic-0.1.4}/pyproject.toml +0 -0
  20. {tinydantic-0.1.3 → tinydantic-0.1.4}/src/tinydantic/__about__.py +0 -0
  21. {tinydantic-0.1.3 → tinydantic-0.1.4}/src/tinydantic/__init__.py +0 -0
  22. {tinydantic-0.1.3 → tinydantic-0.1.4}/src/tinydantic/py.typed +0 -0
  23. {tinydantic-0.1.3 → tinydantic-0.1.4}/taplo.toml +0 -0
  24. {tinydantic-0.1.3 → tinydantic-0.1.4}/tests/__init__.py +0 -0
  25. {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
- - id: check-yaml
23
- args: [--allow-multiple-documents]
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
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,7 @@
1
+ # About
2
+
3
+ !!! warning "Under Construction :construction:"
4
+
5
+ `tinydantic` is currently a work in progress :construction_site:
6
+
7
+ There's not much to see here yet, but free to grab your hard hat and have a look around! :construction_worker:
@@ -0,0 +1,7 @@
1
+ # Installation
2
+
3
+ `tinydantic` is [available on PyPI](https://pypi.org/project/tinydantic/) and can be installed with [pip](https://github.com/pypa/pip).
4
+
5
+ ```sh
6
+ pip install tinydantic
7
+ ```
@@ -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 &copy; 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
@@ -1 +0,0 @@
1
- # Get Started
@@ -1,11 +0,0 @@
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
- theme:
8
- name: material
9
- plugins:
10
- - search
11
- - mkdocstrings
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