-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ Type: Package | |
Title: An R wrapper of lzstring C++ library | ||
Version: 0.1.0 | ||
Author: Sam Parmar | ||
Maintainer: Sam Parmar <[email protected]> | ||
Description: This package provides an R interface to the lz-string C++ library, | ||
enabling LZ-based compression and decompression of strings directly within | ||
R. This can be particularly useful for reducing the memory footprint of | ||
large strings or for transmitting compressed data. | ||
Maintainer: Sam Parmar <[email protected]> | ||
Description: R interface to the lz-string C++ library, enabling LZ-based | ||
compression and decompression of strings directly within R. Useful for | ||
reducing the memory footprint of large strings or transmitting | ||
compressed data. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
|
@@ -17,4 +17,18 @@ Suggests: | |
testthat (>= 3.0.0) | ||
Config/testthat/edition: 3 | ||
RoxygenNote: 7.2.3 | ||
URL: https://parmsam.github.io/lzstring-r/ | ||
URL: https://parmsam.github.io/lzstring-r/, https://github.com/parmsam/lzstring-r | ||
Authors@R: c( | ||
person( | ||
given = "Sam", | ||
family = "Parmar", | ||
role = c("aut", "cre") | ||
email = "[email protected]" | ||
), | ||
person( | ||
given = "Andrey", | ||
family = "Krasnov", | ||
role = "cph", | ||
comment = "Author of included lz-string C++ library" | ||
)) | ||
BugReports: https://github.com/parmsam/lzstring-r/issues |