diff --git a/DESCRIPTION b/DESCRIPTION index 451aa6a..c86044d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,13 +1,15 @@ Package: REmail Type: Package -Title: A package for email data processing. -Version: 0.1 -Date: 2015-05-24 -Author: Matthew Denny and Neha Shah -Maintainer: Matthew Denny +Title: A package for reading in email data wraping the python email libraries. +Version: 0.2 +Date: 2018-03-01 +Author: Matthew Denny +Maintainer: Matthew Denny Description: An R package for processing email data into a useable format. License: GPL-3 Depends: R.methodsS3 Imports: R.methodsS3, rPython, stringr +Suggests: testthat +RoxygenNote: 6.0.1 diff --git a/R/zzz.R b/R/zzz.R new file mode 100644 index 0000000..453a5e8 --- /dev/null +++ b/R/zzz.R @@ -0,0 +1,7 @@ +.onAttach <- function(libname, pkgname) { + packageStartupMessage("REmail: Basic E-Mail Parsing with Python + Version 0.2.0 created on 2018-03-01. + copyright (c) 2018, Matthew J. Denny, Penn State + Development website: github.com/matthewjdenny/REmail + Contact: matthewjdenny@gmail.com") +}