It would be nice to support distribution of Blueprint templates via a Python package. That would support a central team developing blueprints, and distributing these to developer teams without having to copy-paste code into their own repositories.
I believe entry-points would be a good mechanism for this e.g.:
[project.entry-points."blueprint.templates"]
my_company = "my_company_blueprints.templates"
It would be nice to support distribution of Blueprint templates via a Python package. That would support a central team developing blueprints, and distributing these to developer teams without having to copy-paste code into their own repositories.
I believe
entry-pointswould be a good mechanism for this e.g.: