Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Indicate that R package is proprietary

Tags:

r

r-package

Is there a standard way how to indicate that R package is proprietary, owned by a company and should not be shared outside of the company? Right now, I am using this in DESCRIPTION file:

License: Proprietary, ownership of XX Company
like image 898
Tomas Greif Avatar asked Feb 11 '15 14:02

Tomas Greif


1 Answers

You can use the License: field of the DESCRIPTION file and the LICENSE file for the actual license. For more info see: http://cran.r-project.org/doc/manuals/r-release/R-exts.html#Licensing

like image 156
G. Grothendieck Avatar answered Sep 19 '22 13:09

G. Grothendieck