Learn R Programming

pcutils (version 0.2.8)

make_py_pkg: Make a new python package

Description

Make a new python package

Usage

make_py_pkg(
  pkg_name,
  path = ".",
  author = "Your Name",
  email = "your.email@example.com",
  description = "A brief description of your library",
  license = "MIT"
)

Value

No return value

Arguments

pkg_name

package name

path

project path, default "."

author

author

email

email

description

description

license

license

Examples

Run this code
if (interactive()) {
  make_py_pkg("my_python_package",
    path = "~/projects",
    author = "John Doe", description = "My Python library",
    license = "MIT"
  )
}

Run the code above in your browser using DataLab