Metadata-Version: 2.1
Name: hera-sdk
Version: 1.12.6.14
Summary: Hera SDK for Vulcan catalog sync
Author: TMDC
License: MIT License
        
        Copyright (c) 2026 TMDC
        
        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://dataos.info/
Project-URL: Source, https://github.com/tmdc-io/hera2
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: antlr4-python3-runtime ==4.11.1
Requires-Dist: cachetools
Requires-Dist: cached-property ==1.5.2
Requires-Dist: collate-sqllineage <2.1,>=2.0.0
Requires-Dist: cryptography >=42.0.0
Requires-Dist: email-validator >=2.0
Requires-Dist: httpx ~=0.28.0
Requires-Dist: importlib-metadata >=4.13.0
Requires-Dist: jsonpatch <2.0,>=1.24
Requires-Dist: packaging
Requires-Dist: pydantic <2.12,>=2.7.0,~=2.0
Requires-Dist: pydantic-settings >=2.7.0,~=2.0
Requires-Dist: python-dateutil >=2.8.1
Requires-Dist: PyYAML ~=6.0
Requires-Dist: requests >=2.23
Requires-Dist: sqlparse >=0.5.0
Requires-Dist: typing-inspect
Requires-Dist: azure-identity >=1.12
Requires-Dist: azure-keyvault-secrets
Requires-Dist: boto3 ==1.37.1
Requires-Dist: google-cloud-secret-manager ==2.24.0
Requires-Dist: google-crc32c
Requires-Dist: kubernetes >=21.0.0

# hera-sdk for Vulcan

Vulcan-focused build of the `hera-sdk` package. It keeps the Hera REST client,
SDK entity facades, generated schemas, and supporting utility surface needed
for catalog sync, while excluding local ingestion connectors, profiling, PII,
data quality runtime code, workflow runners, CLI code, and examples.

## Build

```sh
cd hera/
make hera-sdk-light
# wheel -> .build/hera-sdk-light-stage/dist/
```

The Makefile passes `SDK_VERSION` to the build script with `--version`, matching
the main SDK release version derivation.

## Scope

Included:

- `sdk/` client facade and entity helpers, excluding `sdk/data_quality/`
- `ingestion/ometa/` REST client and mixins, staged as `ingestion/hera_meta/`
- `ingestion/models/`, `ingestion/api/`, and selected support packages
- all generated Pydantic schemas and ANTLR parsers
- `utils/`, including secrets manager support required by the REST client

Excluded:

- `data_quality/`
- `ingestion/source/` connector tree, except `ingestion/source/models.py`
- `profiler/`, `sampler/`, `pii/`
- `workflow/`, `cli/`, `great_expectations/`, root `examples/`
- `sdk/data_quality/`

## Dependency Policy

The light wheel keeps cloud secret manager dependencies because the REST client
imports `SecretsManagerFactory` at module load. It removes heavy local runtime
dependencies such as spaCy, Presidio, pandas, NumPy, PyArrow, SQLAlchemy,
Snowflake/MySQL/Hive connectors, and SQL lineage parser packages.
