Is possible include non package folder inside the data-files #5119
-
|
let say i have MANIFEST.in so can i write them inside the bcs files are not include recursively in this case, I want to remove the MANIFEST.in completely here |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @p-r-a-v-i-n, please note that the So if you test that approach and it works for you, it should be fine (although the feature will not receive much maintenance). If that does not work in your tests, you probably have to find a different alternative. Please note that "non-package data files" have virtually no advantages when compared to "package data files", specially when considering that Python packages from the PyPI ecosystem are meant to be "installable" in virtual environments, and therefore the destination path where files are located vary widely. |
Beta Was this translation helpful? Give feedback.
Hi @p-r-a-v-i-n, please note that the
data-filesconfiguration is discouraged and only kept for the sake of backwards compatibility with old packages ported from theeggdistribution file (bug-by-bug compatible).So if you test that approach and it works for you, it should be fine (although the feature will not receive much maintenance).
If that does not work in your tests, you probably have to find a different alternative.
Please note that "non-package data files" have virtually no advantages when compared to "package data files", specially when considering that Python packages from the PyPI ecosystem are meant to be "installable" in virtual environments, and therefore the destination p…