Metadata-Version: 2.5
Name: demo_colors
Version: 0.1.2
Summary: Minimal demo library with an observable import-time marker.
Author: Codex
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# demo-colors

A minimal Python demonstration package with an observable import-time marker.
The exact marker is intentionally omitted from this human-readable description.

## Install and use

Python 3.10 or later is required. No runtime dependencies are required.

```sh
python -m pip install "demo-colors==0.1.2"
python -c "import demo_colors"
```

The installation name is `demo-colors`; the import name is `demo_colors`.
An import does not download or install the package. The first normal import in
each Python process prints one fixed marker and a newline. Repeating the import
in that process does not print it again. Explicitly reloading the module
re-executes its code.

## Version information

Read installed distribution metadata without executing the package:

```python
from importlib.metadata import version

print(version("demo-colors"))
```

The imported package also exposes `demo_colors.__version__`:

```python
import demo_colors  # Prints the marker.

print(demo_colors.__version__)  # 0.1.2
```

## Upgrade

```sh
python -m pip install --upgrade "demo-colors==0.1.2"
```

Update an existing version pin in `requirements.txt` or `pyproject.toml` when
you want to adopt this release. Existing installations and exact old version
pins do not change automatically when a new release is published.

## Development from the source distribution

```sh
python -m venv .venv
# Activate .venv for your shell before the following commands.
python -m pip install build pytest twine
python -m pip install .
python -m pytest -q
python -m build
python -m twine check dist/*
```

## Release 0.1.2

This release removes the exact marker value from the human-readable package
summary and long description. Runtime output, import behavior, the import name,
and the minimum Python version remain compatible with 0.1.1.

## License

MIT. See `LICENSE`.
