Can't exclude packages in develop mode #2851
-
Suppose we have the following file structure.
with setup.py containing
It seems that running However, if we do a proper non-develop mode install, these excluded modules are actually not installed. Any idea what's going on? |
Beta Was this translation helpful? Give feedback.
Answered by
benoit-pierre
Nov 4, 2021
Replies: 1 comment
-
That's just how an editable install work: your project source directory is added to the Python path. And yes, it means that |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tchittesh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's just how an editable install work: your project source directory is added to the Python path. And yes, it means that
setup.py
is importable too...