fix: recursively include packages for conda using setuptools#649
fix: recursively include packages for conda using setuptools#649mxschmitt merged 1 commit intomicrosoft:masterfrom kumaraditya303:master
Conversation
mxschmitt
left a comment
There was a problem hiding this comment.
Either you use
find_packages(exclude=["tests*", "playwright._*"])
which will result in
['playwright', 'playwright.async_api', 'playwright.sync_api']
or you just hard-code the 3 output values of it. Having it like you suggested would result in
['playwright', 'tests.common', 'tests.async', 'tests.sync', 'playwright.async_api', 'playwright.sync_api', 'playwright._impl']
which is not expected from my understanding.
|
Did you mean |
Just having |
|
|
ah I guessed impl was not expected there. 👍 Then feel free to adjust it to |
No description provided.