How to make R package recommend a package hosted on GitHub?
I'm developing an R package that works as a wrapper for functions from the parallel and Rhpc packages called ctools . I know that if I want my package to require these packages I need to include them in the Imports section of the DESCRIPTION file. When installing my package, these packages will be installed from CRAN. Similarly I can put them in the Suggests section if they aren't required, but useful. These won't be installed with my package. But, I've forked the Rhpc package and added a function that I use in my ctools package. How do I get my package to Suggest/Import this package from my