echoing-farmer-15630
10/20/2021, 7:45 PM**/*.py
but that loses the point of the fine-grained resolution when I need it.happy-kitchen-89482
10/20/2021, 8:02 PMpython_library
that globs over ***/**.py
and then your sources would have two owners, which isn't ideal but is workable./pants <goal> foo/bar/baz.py
won't work because there is no unambiguous owner of that fileechoing-farmer-15630
10/20/2021, 8:17 PMwitty-crayon-22786
10/20/2021, 8:58 PMimport
statements include files. but anywhere where you load something “reflectively” (i.e., without an import statement, likely via a string), you’ll need to explicitly declare the dependencyimport
statement for any plugins: instead, the pex_binary
declares a list of plugins in its BUILD file, which causes them to be included in its PEXimport
statements