yuzutech / blockdiag

Fork of blockdiag
Apache License 2.0
4 stars 1 forks source link

remove useless exclude declaration in MANIFEST.in #16

Closed arenevier closed 2 months ago

arenevier commented 2 months ago

examples/update.sh is not included by the recursive-include rule above. This results in the following warning when building a source distribution: warning: no previously-included files found matching 'examples/update.sh

ggrossetie commented 2 months ago

That's a bit weird no? We do have a recursive-include examples rule but examples/update.sh is not included?

arenevier commented 2 months ago

@ggrossetie : not really. The rule is recursive-include examples blockdiagrc *.diag *.png *.svg

It includes all diag, png, svg files. But not .sh files.

ggrossetie commented 2 months ago

I see, so the first argument is the directory/path and the rest are file patterns?