Metadata-Version: 2.4
Name: sindripy
Version: 2.0.0
Summary: [DEPRECATED] Use value-object-sindri and object-mother-sindri instead
Project-URL: documentation, https://dimanu-py.github.io/sindri/home/
Project-URL: repository, https://github.com/dimanu-py/sindri/
Project-URL: homepage, https://dimanu-py.github.io/sindri/home/
Project-URL: issues, https://github.com/dimanu-py/sindri/issues/
Author-email: dimanu-py <dimanu.py@gmail.com>
License: MIT License
        
        Copyright (c) 2025 dimanu-py
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
License-File: LICENSE
Keywords: deprecated,sindripy
Classifier: Framework :: FastAPI
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing :: BDD
Classifier: Topic :: Software Development :: Testing :: Unit
Classifier: Typing :: Typed
Requires-Python: <3.14,>=3.10
Requires-Dist: object-mother-sindri>=0.1.0
Requires-Dist: value-object-sindri>=0.1.0
Provides-Extra: build
Requires-Dist: uv>=0.11.17; extra == 'build'
Description-Content-Type: text/markdown

# Sindripy [DEPRECATED]

**This package has been split into two independent packages.**

| Package        | PyPI                                                                     | Documentation                                           |
|----------------|--------------------------------------------------------------------------|---------------------------------------------------------|
| Value Objects  | [`value-object-sindri`](https://pypi.org/project/value-object-sindri/)   | [docs](https://dimanu-py.github.io/value-object/home/)  |
| Object Mothers | [`object-mother-sindri`](https://pypi.org/project/object-mother-sindri/) | [docs](https://dimanu-py.github.io/object-mother/home/) |

## What is this?

`sindripy` v2.0.0 is a transitional release that installs `value-object-sindri` and `object-mother-sindri` as dependencies and shows a deprecation warning on import. It no longer contains any implementation.

## Migration

1. Replace `sindripy` with the new packages:

```bash
pip uninstall sindripy
pip install value-object-sindri object-mother-sindri
```

2. Update your imports:

```python
# Old
from sindripy.value_objects import Integer, String
from sindripy.mothers import IntegerPrimitivesMother

# New
from value_object import Integer, String
from object_mother import IntegerPrimitivesMother
```

3. For custom value objects and validators, update the base class imports:

```python
# Old
from sindripy.value_objects.value_object import ValueObject
from sindripy.value_objects.decorators.validation import validate

# New
from value_object import ValueObject, validate
```

For full documentation, visit:
- [Value Objects docs](https://dimanu-py.github.io/value-object/home/)
- [Object Mother docs](https://dimanu-py.github.io/object-mother/home/)
