Thursday, March 18, 2021

Mod 10: Final Project - DESCRIPTION

Mod-10.utf8


The DESCRIPTION file of the package.

cat DESCRIPTION
Package: CryptoR
Title: Cryptocurrency Data From CoinGeckco
Version: 0.0.0.9000
Authors@R: 
    person(given = "Eric",
           family = "Townes",
           role = c("aut", "cre"),
           email = "erict@mail.usf.edu",
           comment = c(ORCID = "YOUR-ORCID-ID"))
Description: The package will access the CoinGecko API V3 which is free and
    does not require an API key. The CoinGecko API can be found at
    https://www.coingecko.com/en/api. Ths information is current as of
    March 2021.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Imports: 
    httr,
    jsonlite,
    stringr
Depends: 
    R (>= 2.10)


The usage of the MIT license requires 2 additional license files.

The files were created using use_mit_license("Eric Townes")


(1) LICENSE
cat LICENSE
YEAR: 2021
COPYRIGHT HOLDER: Eric Townes


(2) LICENSE.MD
cat LICENSE.MD
# MIT License

Copyright (c) 2021 Eric Townes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.



GitHub

Related file(s) can be found at Git Me

No comments:

Post a Comment