Currently, the LICENSE file is stored in three places:
repo root
py-pkg/LICENSE
r-pkg/LICENSE
This duplication is unnecessary and could lead to inconsistencies in the future. To close this issue, set up a shell script of make file or something which copies the root LICENSE into the packages. Something like
Makefile
build-r:
cp LICENSE r-pkg/
R CMD build r-pkg/
build-py:
cp LICENSE py-pkg/
cd py-pkg && python3 setup.py sdist
Currently, the
LICENSE
file is stored in three places:py-pkg/LICENSE
r-pkg/LICENSE
This duplication is unnecessary and could lead to inconsistencies in the future. To close this issue, set up a shell script of make file or something which copies the root
LICENSE
into the packages. Something likeMakefile