Metadata-Version: 2.5
Name: thalia-workload
Version: 0.0.1
Summary: Reserved package name for a private internal project. Not functional.
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# thalia-workload

**This package is a name reservation. It contains no code and does nothing.**

The name `thalia-workload` belongs to a private, internal framework that is
published only to a private package index and is not distributed publicly. This
placeholder is registered here so that the name cannot be claimed by anyone else.

That matters because a private index which falls through to PyPI for packages it
does not host will fetch a public package of the same name if one exists — and
installing a Python package can execute code. Holding the name closes that route.

There is no intention to publish a functional release here, now or later. If you
have arrived looking for a library, this is not one.

## For the maintainers

Publish only to the public index, and only from this directory:

```
uv build
uv publish --publish-url https://upload.pypi.org/legacy/ \
           --username __token__ --password pypi-...
```

Both steps. `uv publish` does not build — it uploads whatever is in `dist/`, and
reports `No files found to publish` when that directory is absent or empty.

The version here is `0.0.1` and stays there. Real releases are versioned from the
build and are four-part; nothing internal will ever ask for `0.0.1`, so a resolve
that reaches this package by mistake fails to match rather than silently
installing an empty wheel in place of the framework.
