django-cattrs-fields 0.0.1.post1__tar.gz → 0.0.1.post2__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 (53) hide show
  1. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/PKG-INFO +5 -5
  2. django_cattrs_fields-0.0.1.post2/django_cattrs_fields/__init__.py +1 -0
  3. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/pyproject.toml +5 -5
  4. django_cattrs_fields-0.0.1.post1/django_cattrs_fields/__init__.py +0 -1
  5. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/.github/workflows/ci.yaml +0 -0
  6. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/.github/workflows/pre_commit.yaml +0 -0
  7. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/.github/workflows/release.yml +0 -0
  8. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/.gitignore +0 -0
  9. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/.pre-commit-config.yaml +0 -0
  10. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/LICENSE +0 -0
  11. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/README.md +0 -0
  12. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/__init__.py +0 -0
  13. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/bson.py +0 -0
  14. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/cbor2.py +0 -0
  15. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/json.py +0 -0
  16. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/msgpack.py +0 -0
  17. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/msgspec.py +0 -0
  18. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/orjson.py +0 -0
  19. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/pyyaml.py +0 -0
  20. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/register_hooks.py +0 -0
  21. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/tomlkit.py +0 -0
  22. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/converters/ujson.py +0 -0
  23. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/fields/__init__.py +0 -0
  24. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/fields/files.py +0 -0
  25. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/hooks/__init__.py +0 -0
  26. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/hooks/bool_hooks.py +0 -0
  27. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/hooks/char_hooks.py +0 -0
  28. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/hooks/date_hooks.py +0 -0
  29. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/hooks/empty_hooks.py +0 -0
  30. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/hooks/file_hooks.py +0 -0
  31. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/hooks/number_hooks.py +0 -0
  32. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/py.typed +0 -0
  33. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/utils/decimal.py +0 -0
  34. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/utils/timezone.py +0 -0
  35. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/django_cattrs_fields/validators/__init__.py +0 -0
  36. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/__init__.py +0 -0
  37. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/books/__init__.py +0 -0
  38. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/books/apps.py +0 -0
  39. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/books/migrations/0001_initial.py +0 -0
  40. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/books/migrations/__init__.py +0 -0
  41. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/books/models.py +0 -0
  42. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/books/urls.py +0 -0
  43. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/books/views.py +0 -0
  44. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/conf/__init__.py +0 -0
  45. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/conf/settings.py +0 -0
  46. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/conf/urls.py +0 -0
  47. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/test_boolean_fields.py +0 -0
  48. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/test_character_fields.py +0 -0
  49. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/test_date_fields.py +0 -0
  50. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/test_empty.py +0 -0
  51. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/test_file_fields.py +0 -0
  52. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/test_file_upload.py +0 -0
  53. {django_cattrs_fields-0.0.1.post1 → django_cattrs_fields-0.0.1.post2}/tests/test_numeric_fields.py +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-cattrs-fields
3
- Version: 0.0.1.post1
3
+ Version: 0.0.1.post2
4
4
  Summary: django data type support for cattrs
5
- Project-URL: Homepage, https://github.com/amirreza8002/django-cattrs-fields
6
- Project-URL: Source, https://github.com/amirreza8002/django-cattrs-fields
7
- Project-URL: Issues, https://github.com/django-commons/django-cattrs-fields/issues
8
- Project-URL: Documentation, https://github.com/amirreza8002/django-cattrs-fields
5
+ Project-URL: Homepage, https://github.com/amirreza-sf80/django-cattrs-fields
6
+ Project-URL: Source, https://github.com/amirreza-sf80/django-cattrs-fields
7
+ Project-URL: Issues, https://github.com/amirreza-sf80/django-cattrs-fields/issues
8
+ Project-URL: Documentation, https://github.com/amirreza-sf80/django-cattrs-fields
9
9
  Author-email: amirreza <amir.rsf1380@gmail.com>
10
10
  License-Expression: BSD-3-Clause
11
11
  License-File: LICENSE
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1.post2"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "django-cattrs-fields"
7
- version = "0.0.1.post1"
7
+ version = "0.0.1.post2"
8
8
  description = "django data type support for cattrs"
9
9
  readme = "README.md"
10
10
  license = "BSD-3-Clause"
@@ -91,10 +91,10 @@ test = [
91
91
  ]
92
92
 
93
93
  [project.urls]
94
- Homepage = "https://github.com/amirreza8002/django-cattrs-fields"
95
- Source = "https://github.com/amirreza8002/django-cattrs-fields"
96
- Issues = "https://github.com/django-commons/django-cattrs-fields/issues"
97
- Documentation = "https://github.com/amirreza8002/django-cattrs-fields"
94
+ Homepage = "https://github.com/amirreza-sf80/django-cattrs-fields"
95
+ Source = "https://github.com/amirreza-sf80/django-cattrs-fields"
96
+ Issues = "https://github.com/amirreza-sf80/django-cattrs-fields/issues"
97
+ Documentation = "https://github.com/amirreza-sf80/django-cattrs-fields"
98
98
 
99
99
 
100
100
  [tool.django]
@@ -1 +0,0 @@
1
- __version__ = "0.0.1.post1"