One of the pains about maintaining R and Python packages out of the same repo is how each wants to handle package data which at the moment only consists of query_library.yml
At the moment we cater to R and put it where it wants it: inst/extdata. And for Python we copy it into place in our setup.py. This seems to work although with the plethora of ways a Python package may get installed it is entirely possible it won't in all cases. In which case we should revisit this arrangement.
One of the pains about maintaining R and Python packages out of the same repo is how each wants to handle package data which at the moment only consists of
query_library.ymlAt the moment we cater to R and put it where it wants it:
inst/extdata. And for Python we copy it into place in oursetup.py. This seems to work although with the plethora of ways a Python package may get installed it is entirely possible it won't in all cases. In which case we should revisit this arrangement.