Conversation
|
|
||
| [tool.setuptools.package-data] | ||
| "*" = ["*.yaml"] | ||
| "*" = ["*.yaml", "assets/*png"] |
There was a problem hiding this comment.
@srivarra is this the best way to do this?
There was a problem hiding this comment.
@talonchandler After doing some digging around, yeah is the most straightforward way to do it.
Or if internet connection is expected, you could grab the image from the https://raw.githubusercontent.com/mehta-lab/waveorder/8e75f7ffe0a9751b4f8f105e01d3092e0f0a2194/waveorder/assets/HSV_legend.png and have it download when napari loads, without having to throw it into the wheel.
There was a problem hiding this comment.
Thanks. I think these are small enough that I'm fine shipping with the wheel
srivarra
left a comment
There was a problem hiding this comment.
Do you not need the HSV_legend.png in the docs itself?
|
|
||
| [tool.setuptools.package-data] | ||
| "*" = ["*.yaml"] | ||
| "*" = ["*.yaml", "assets/*png"] |
There was a problem hiding this comment.
@talonchandler After doing some digging around, yeah is the most straightforward way to do it.
Or if internet connection is expected, you could grab the image from the https://raw.githubusercontent.com/mehta-lab/waveorder/8e75f7ffe0a9751b4f8f105e01d3092e0f0a2194/waveorder/assets/HSV_legend.png and have it download when napari loads, without having to throw it into the wheel.
No...we have some screenshots that include this, but there's no need to import it by itself. |
Fixes #494.
#461 broke the links, and #480 does not ship these assets. This PR fixes both issues.