Possible to use this target to package a 3rd party...
# general
f
Possible to use this target to package a 3rd party tool using Pants? Seems like I need a python_distribution, do I need to create one just for wrapping the 3rd party tool? https://www.pantsbuild.org/docs/reference-pyoxidizer_binary
Right now I have
Copy code
python_distribution(
   name = "tusker-dist",
   dependencies = [
      "3rdparty/python:reqs#tusker"
   ],
   provides=python_artifact(
      name = "tusker",
      version = "0.1.0"
   ),
   generate_setup = False,
   wheel = True,
   sdist = False,
)
pyoxidizer_binary(
   name = "tusker",
   entry_point = "tusker",
   dependencies = [
      ":tusker-dist"
   ]
)
But I am getting "no module named tusker".
I realize that this is more of a PyOxidizer question. Excuse my bad questions today!