uptake / groundhog

Service and client libraries for interacting with SRTM elevation data
BSD 3-Clause "New" or "Revised" License
7 stars 8 forks source link

reduce duplication of LICENSE #3

Closed jameslamb closed 5 years ago

jameslamb commented 5 years ago

Currently, the LICENSE file is stored in three places:

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