I've taken a look at How to include docs directory in python distribution which shows the following examples:
include docs/*
recursive-include docs *
But then looking at Including files in source distributions with MANIFEST.in I see:
include pat1 pat2 ...
My understanding so far is given this directory structure:
a/
b.txt # File 1
b.txt # File 2
include a/b.txt
results in only file 1 being included.include a b.txt
results in both file 1 file 2 being included (because all ofa
is included).
Is this right?