Metadata-Version: 2.4
Name: djust-theming
Version: 99.0.0
Summary: DEPRECATED: use `pip install djust` instead.
Author: djust contributors
License: MIT
Project-URL: Homepage, https://djust.org
Project-URL: Repository, https://github.com/djust-org/djust-theming
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: djust>=0.5.6rc1
Dynamic: license-file

# djust-theming (DEPRECATED)

**This package is deprecated.** All functionality has been folded into the main [djust](https://github.com/johnrtipton/djust) package as of djust v0.5.0. Install djust and import from `djust.theming` instead.

Installing this package will emit a `DeprecationWarning` on import and pull in djust as a dependency, so existing code keeps working — but you should migrate.

## Migration

### Before (v0.x):
```
pip install djust-theming
```
```python
from djust_theming import ThemeManager, ThemeMixin, THEME_PRESETS
```

### After:
```
pip install djust
```
```python
from djust.theming import ThemeManager, ThemeMixin, THEME_PRESETS
```

See [MIGRATION.md](MIGRATION.md) for the full import mapping.

## Why the consolidation?

djust v0.5.0 folded auth, tenants, admin, theming, and components into the core package. One install, one version number, one dependency pin. See the djust [MANIFESTO](https://djust.org/MANIFESTO_IDEAS.md) ("Complexity Is the Enemy") and the package consolidation plan for details.
