sindripy 0.1.1__tar.gz → 0.1.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.

Potentially problematic release.


This version of sindripy might be problematic. Click here for more details.

Files changed (35) hide show
  1. {sindripy-0.1.1 → sindripy-0.1.2}/PKG-INFO +3 -3
  2. {sindripy-0.1.1 → sindripy-0.1.2}/README.md +2 -2
  3. {sindripy-0.1.1 → sindripy-0.1.2}/pyproject.toml +1 -1
  4. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/__init__.py +1 -1
  5. {sindripy-0.1.1 → sindripy-0.1.2}/LICENSE +0 -0
  6. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/_compat.py +0 -0
  7. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/__init__.py +0 -0
  8. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/identifiers/__init__.py +0 -0
  9. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/identifiers/string_uuid_primitives_mother.py +0 -0
  10. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/object_mother.py +0 -0
  11. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/primitives/__init__.py +0 -0
  12. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/primitives/boolean_primitives_mother.py +0 -0
  13. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/primitives/float_primitives_mother.py +0 -0
  14. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/primitives/integer_primitives_mother.py +0 -0
  15. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/primitives/list_primitives_mother.py +0 -0
  16. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/mothers/primitives/string_primitives_mother.py +0 -0
  17. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/py.typed +0 -0
  18. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/__init__.py +0 -0
  19. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/aggregate.py +0 -0
  20. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/decorators/__init__.py +0 -0
  21. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/decorators/validation.py +0 -0
  22. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/errors/__init__.py +0 -0
  23. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/errors/incorrect_value_type_error.py +0 -0
  24. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/errors/invalid_id_format_error.py +0 -0
  25. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/errors/required_value_error.py +0 -0
  26. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/errors/sindri_validation_error.py +0 -0
  27. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/identifiers/__init__.py +0 -0
  28. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/identifiers/string_uuid.py +0 -0
  29. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/primitives/__init__.py +0 -0
  30. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/primitives/boolean.py +0 -0
  31. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/primitives/float.py +0 -0
  32. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/primitives/integer.py +0 -0
  33. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/primitives/list.py +0 -0
  34. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/primitives/string.py +0 -0
  35. {sindripy-0.1.1 → sindripy-0.1.2}/src/sindripy/value_objects/value_object.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: sindripy
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Value Object and Object Mother patterns implementation for Python
5
5
  Author: dimanu-py
6
6
  Author-email: dimanu-py <dimanu.py@gmail.com>
@@ -54,7 +54,7 @@ Description-Content-Type: text/markdown
54
54
  <a href="https://dimanu-py.github.io/sindri/home/getting_started/">Getting Started</a>&nbsp;&nbsp;•&nbsp;
55
55
  <a href="https://dimanu-py.github.io/sindri/value_objects/">Value Object Pattern</a>&nbsp;&nbsp;•&nbsp;
56
56
  <a href="https://dimanu-py.github.io/sindri/object_mothers/">Object Mother Pattern</a>&nbsp;&nbsp;•&nbsp;
57
- <a href="https://dimanu-py.github.io/sindri/home/contributing/">Contributing</a>
57
+ <a href="https://dimanu-py.github.io/sindri/home/contributing_guide/">Contributing</a>
58
58
  </p>
59
59
 
60
60
  > [!NOTE]
@@ -141,4 +141,4 @@ random_name = StringPrimitivesMother.any()
141
141
  ## Contributing
142
142
 
143
143
  We welcome contributions to `sindripy`! If you have ideas, suggestions, or improvements, please check out our
144
- [contributing guide](https://dimanu-py.github.io/sindri/home/contributing/) for details on how to get involved.
144
+ [contributing guide](https://dimanu-py.github.io/sindri/home/contributing_guide/) for details on how to get involved.
@@ -7,7 +7,7 @@
7
7
  <a href="https://dimanu-py.github.io/sindri/home/getting_started/">Getting Started</a>&nbsp;&nbsp;•&nbsp;
8
8
  <a href="https://dimanu-py.github.io/sindri/value_objects/">Value Object Pattern</a>&nbsp;&nbsp;•&nbsp;
9
9
  <a href="https://dimanu-py.github.io/sindri/object_mothers/">Object Mother Pattern</a>&nbsp;&nbsp;•&nbsp;
10
- <a href="https://dimanu-py.github.io/sindri/home/contributing/">Contributing</a>
10
+ <a href="https://dimanu-py.github.io/sindri/home/contributing_guide/">Contributing</a>
11
11
  </p>
12
12
 
13
13
  > [!NOTE]
@@ -94,4 +94,4 @@ random_name = StringPrimitivesMother.any()
94
94
  ## Contributing
95
95
 
96
96
  We welcome contributions to `sindripy`! If you have ideas, suggestions, or improvements, please check out our
97
- [contributing guide](https://dimanu-py.github.io/sindri/home/contributing/) for details on how to get involved.
97
+ [contributing guide](https://dimanu-py.github.io/sindri/home/contributing_guide/) for details on how to get involved.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "sindripy"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Value Object and Object Mother patterns implementation for Python"
5
5
  authors = [{name = "dimanu-py", email = "dimanu.py@gmail.com"}]
6
6
  dependencies = [
@@ -8,4 +8,4 @@ installed as a dependency.
8
8
  from src.sindripy import mothers, value_objects
9
9
 
10
10
  __all__ = ["mothers", "value_objects"]
11
- __version__ = "0.1.1"
11
+ __version__ = "0.1.2"
File without changes
File without changes