Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit of R packaging-related files for dash-component-boilerplate #72

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@
"author_name": "Enter your name (For package.json)",
"author_email": "Enter your email (For package.json)",
"description": "Project Description",
"github_username": "Enter the account name of the person or group who maintains the repo to which the package will be contributed.",
"repo_name": "Enter the name of the GitHub repository.",
"r_package_name": "Enter the name of the R package to build.",
"r_project_title": "Enter a descriptive R package title.",
"r_package_version": "Enter an (integer/numeric) R package version.",
"r_package_prefix": "",
"r_package_description": "Enter a short R package description.",
"r_package_encoding": "UTF-8",
"r_package_depends": "",
"r_package_imports": "",
"r_package_suggests": "",
"r_package_lazydata": "true",
"license": [
"MIT License",
"BSD License",
Expand All @@ -15,4 +27,4 @@
],
"publish_on_npm": true,
"install_dependencies": true
}
}
14 changes: 14 additions & 0 deletions {{cookiecutter.project_shortname}}/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Package: {{ cookiecutter.r_package_name }}
Title: {{ cookiecutter.r_project_title }}
Version: {{ cookiecutter.r_package_version }}
Maintainer: {{ cookiecutter.full_name}} <{{ cookiecutter.author_email }}>
Description: {{ cookiecutter.r_package_description }}
Authors @R: as.personi(c({{ cookiecutter.author_name }}))
Depends: {{ cookiecutter.r_package_depends }}
Imports: {{ cookiecutter.r_package_imports }}
Suggests: {{ cookiecutter.r_package_suggests }}
License: {{ cookiecutter.license }}
Encoding: {{ cookiecutter.r_package_encoding }}
LazyData: {{ cookiecutter.r_package_lazydata }}
URL: https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.project_shortname }}
BugReports: https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.project_shortname }}/issues
10 changes: 10 additions & 0 deletions {{cookiecutter.project_shortname}}/NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# List the R functions to be exported here
# To export one function called "somefunction", use
# export(somefunction)
#
# To export all functions which don't start with a dot, use
# exportPattern("^[^\\.]")
#
# It's generally preferable to export functions as needed, however.
# https://cran.r-project.org/doc/manuals/r-release/R-exts.html
# http://r-pkgs.had.co.nz/namespace.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#' {{ cookiecutter.project_short_description }}
#'
#' @docType package
#' @name {{ cookiecutter.r_package_name }}
#
# Write functions only and document them with roxygen-styled comments.
# Example below taken from http://r-pkgs.had.co.nz/man.html
#

#' Add together two numbers.
#'
#' @param x A number.
#' @param y A number.
#' @return The sum of \code{x} and \code{y}.
#' @examples
#' add(1, 1)
#' add(10, 1)
#' @export
add <- function(x, y) {
x + y
}

22 changes: 22 additions & 0 deletions {{cookiecutter.project_shortname}}/man/add.Rd
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
% Generated by roxygen2 (4.0.0): do not edit by hand
\name{add}
\alias{add}
\title{Add together two numbers}
\usage{
add(x, y)
}
\arguments{
\item{x}{A number}

\item{y}{A number}
}
\value{
The sum of \code{x} and \code{y}
}
\description{
Add together two numbers
}
\examples{
add(1, 1)
add(10, 1)
}
3 changes: 2 additions & 1 deletion {{cookiecutter.project_shortname}}/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
"build:js-dev": "webpack --mode development",
"build:js": "webpack --mode production",
"build:py": "dash-generate-components ./src/lib/components {{ cookiecutter.project_shortname }}",
"build:r": "dash-generate-components ./src/lib/components {{ cookiecutter.project_shortname }} --r-prefix '{{ cookiecutter.r_package_prefix }}'",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As in plotly/dash-core-components#555 let's change this to a single back-end command build:py_and_r, also using -p package-info.json.

"build:py-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py)",
"build:all": "npm run build:js && npm run build:js-dev && npm run build:py",
"build:all": "npm run build:js && npm run build:js-dev && npm run build:py && npm run build:r",
"build:all-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:all)"
},
"author": "{{ cookiecutter.author_name }} {{ cookiecutter.author_email }}",
Expand Down