I have a Python package where I want to include an empty directory as part of the source distribution. I tried adding
include empty_directory
to the MANIFEST.in
file, but when I run
python setup.py sdist
The empty directory is still not included. Any tips on how to do this?