Metadata-Version: 2.4
Name: dataengineer_toolbox
Version: 0.0.6
Summary: A comprehensive data engineering toolbox for Python
Author-email: Your Name <dacho68@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Dac Toan Ho
        
        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.
        
Project-URL: Homepage, https://github.com/yourusername/dataengineer_toolbox
Project-URL: Repository, https://github.com/yourusername/dataengineer_toolbox
Project-URL: Issues, https://github.com/yourusername/dataengineer_toolbox/issues
Keywords: data engineering,toolbox,python
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
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 :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyspark<4.0,>=3.5
Requires-Dist: pydantic>=2.0
Requires-Dist: pydantic-core>=2.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: flake8>=6.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Dynamic: license-file

# DataEngineerToolbox
1. Set up virtual environment
```
python -m venv venv
venv\Scripts\activate
```
2. Install build dependencies

```
pip install build
```
3. Install package dependencies
```
pip install -e .
```
4. Build the wheel
```
python -m build
```
This will generate two files in the dist folder:

- dataeng_toolbox-0.1.0.tar.gz (source distribution)
- dataeng_toolbox-0.1.0-py3-none-any.whl (wheel)

5. (Optional) Publish to PyPI

```
pip install twine
twine upload dist/*
```

You will be prompted for your PyPI username and password.

# Run Unit Tests
## Run with verbose output and coverage
pytest --cov=dataeng_toolbox

## Run specific test file
pytest tests\test_vtable_model.py

## Run specific test class
pytest tests\test_vtable_serialization.py::TestVTableListSerialization

## Run specific test method
pytest tests\test_vtable_serialization.py::TestVTableListSerialization::test_dumps_returns_string
