I know that MANIFEST.in recognizes relative paths. However, is it possible to use relative paths pointing to directories outside the project?
For instance:
/home /random_dir /python_project MANIFEST.in setup.py /packages
And then inside MANIFEST.in
graft ../random_dir/
If not, is there an alternative way to include such directories other than just copying and pasting the catalog into the project?
source share