Metadata-Version: 2.4
Name: dc-up
Version: 0.2.0
Summary: Command-line tool for bringing repositories up to a managed baseline using layered canonical templates.
Project-URL: Homepage, https://github.com/denisecase/dc-up
Project-URL: Repository, https://github.com/denisecase/dc-up
Project-URL: Documentation, https://denisecase.github.io/dc-up/
Project-URL: Issues, https://github.com/denisecase/dc-up/issues
Project-URL: Changelog, https://github.com/denisecase/dc-up/blob/main/CHANGELOG.md
Author: Denise Case
License: MIT License
        
        Copyright (c) 2026 Denise Case
        
        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: automation,command-line-tool,developer-tooling,python,repository-baseline,repository-templates,software-architecture,template-management,uvx
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
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.14
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: pre-commit; extra == 'dev'
Requires-Dist: pyright; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocstrings[python]; extra == 'docs'
Requires-Dist: zensical; extra == 'docs'
Description-Content-Type: text/markdown

# dc-up

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

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

> Command-line tool for bringing repositories up
> to a managed baseline using layered canonical templates.

## Template Source

- [templates](https://github.com/denisecase/templates)

## Update a Repo based on Templates

```shell
uvx dc-up
uvx dc-up --write
```

## 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/denisecase/dc-up

cd dc-up
code .
```

### In a VS Code terminal

```shell
uv self update
uv python pin 3.14
uv lock --upgrade
uv sync --extra dev --extra docs --upgrade

uvx pre-commit install
uvx pre-commit autoupdate

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

# repo-specific
uv run dc-up
uv run dc-up --write

# types, tests, docs
uv run python -m pyright
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>

## Annotations

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

## Authority Manifest

[.accountability/surfaces.toml](./.accountability/surfaces.toml)

## Citation

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

## License

[MIT](./LICENSE)
