Metadata-Version: 2.5
Name: composable-data-core
Version: 0.0.1
Summary: Reusable, typed analytical primitives and contracts for Python.
Project-URL: Homepage, https://github.com/composable-data/composable-data-core
Project-URL: Repository, https://github.com/composable-data/composable-data-core
Project-URL: Documentation, https://composable-data.github.io/composable-data-core/
Project-URL: Issues, https://github.com/composable-data/composable-data-core/issues
Project-URL: Changelog, https://github.com/composable-data/composable-data-core/blob/main/CHANGELOG.md
Author: Denise Case
License-File: LICENSE
Keywords: analytical-workflows,analytics-components,business-intelligence,continuous-intelligence,data-analytics,dependency-injection,machine-learning,professional-python,protocols,python,reproducible-analytics,software-architecture,streaming-analytics,typed-python
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.15
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.15
Description-Content-Type: text/markdown

# composable-data-core: Professional Components for Useful Python

[![PyPI](https://img.shields.io/pypi/v/composable-data-core?logo=pypi&label=pypi)](https://pypi.org/project/composable-data-core/)
[![Docs Site](https://img.shields.io/badge/docs-site-blue?logo=github)](https://composable-data.github.io/composable-data-core/)
[![Repo](https://img.shields.io/badge/repo-GitHub-black?logo=github)](https://github.com/composable-data/composable-data-core)
[![Python 3.15](https://img.shields.io/badge/python-3.15%2B-blue?logo=python)](./pyproject.toml)
[![License](https://img.shields.io/badge/license-MIT-yellow.svg)](./LICENSE)

[![CI](https://github.com/composable-data/composable-data-core/actions/workflows/ci-python-zensical.yml/badge.svg?branch=main)](https://github.com/composable-data/composable-data-core/actions/workflows/ci-python-zensical.yml)
[![Docs-Deploy](https://github.com/composable-data/composable-data-core/actions/workflows/deploy-zensical.yml/badge.svg?branch=main)](https://github.com/composable-data/composable-data-core/actions/workflows/deploy-zensical.yml)
[![Pre-Release](https://github.com/composable-data/composable-data-core/actions/workflows/pre-release.yml/badge.svg?branch=main)](https://github.com/composable-data/composable-data-core/actions/workflows/pre-release.yml)
[![Release](https://github.com/composable-data/composable-data-core/actions/workflows/release-pypi.yml/badge.svg)](https://github.com/composable-data/composable-data-core/actions/workflows/release-pypi.yml)
[![Links](https://github.com/composable-data/composable-data-core/actions/workflows/links.yml/badge.svg?branch=main)](https://github.com/composable-data/composable-data-core/actions/workflows/links.yml)
[![Dependabot](https://img.shields.io/badge/Dependabot-enabled-brightgreen.svg)](https://github.com/composable-data/composable-data-core/security)

> Reusable, typed analytical primitives and contracts for Python.

## Purpose

Enable analysts to focus on higher-level analysis skills.

## Design

- Components compute.
- Plans and requests express analytical intent.
- Results carry structured evidence.
- Reporters control representation.
- Integrations connect professional libraries.
- Domain- and dataset-specific behavior lives outside this project.
- Core is dependency-free.
- Protocols and dependency injection preferred over inheritance.
- Analytical decisions are explicit.
- Exact artifacts may be identified with content hashes.

## Developer Command Reference

<details>
<summary>Show command reference</summary>

### In a machine terminal

Open a machine terminal where you want the project:

```shell
git clone https://github.com/composable-data/composable-data-core

cd composable-data-core
code .
```

### In a VS Code terminal

```shell
uv self update
uv python pin 3.15
uv lock --upgrade
uv sync

uv run pre-commit install
uv run pre-commit autoupdate

git add -A
uv run pre-commit run --all-files
# repeat if changes were made
uv run pre-commit run --all-files

# types, tests, docs
uv run ty check
uv run python -m pytest
uv run python -m zensical build

# save progress
git add -A
git commit -m "update"
git push -u origin main
```

</details>

## Documentation

- [Documentation](https://composable-data.github.io/composable-data-core/)

## Annotations

[.annotations/annotations.md](./.annotations/annotations.md)

## Citation

[CITATION.cff](./CITATION.cff)

## License

[MIT](./LICENSE)
