Features
* Allow Parameter to be used as a decorator. by BrianPugh in https://github.com/BrianPugh/cyclopts/pull/295
python
from cyclopts import App, Parameter
from dataclasses import dataclass
app = App(name="movie-maintainer")
Parameter(name="*")
dataclass
class Movie:
title: str
year: int
app.command
def add(movie: Movie):
print(f"Adding movie: {movie}")
app()
See [docs example](https://cyclopts.readthedocs.io/en/latest/user_classes.html#namespace-flattening) for more information.
Internal
* To allow the `Parameter` decorator, we Introduce a hidden `__cyclopts__` attribute that gets attached to decorated objects. Currently only created/used when `Parameter` is used.
**Full Changelog**: https://github.com/BrianPugh/cyclopts/compare/v3.1.5...v3.2.0