stevedore_namespace
stevedore_namespace = ...
Tag a namespace in entry_points as a stevedore namespace.
This is required for the entry_point to be visible to dep inference based on the stevedore_namespaces
field.
For example: `
python python_distribution(
...
entry_points={
stevedore_namespace("a.b.c"): {
"plugin_name": "some.entry:point",
},
},
) `