What's the proper way to set up `resources` with w...
# general
b
What's the proper way to set up
resources
with wildcards? The below code doesn't work, but if I list the files individually it does.
Copy code
resources(
    name="packageA_datafiles",
    sources=["share/jupyter/*"]
)
h
“share/jupyter/**” I think, if you have files in subdirs
b
**
was the key, thank you very much!