Make a new python package

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

Arguments

pkg_name

package name

path

project path, default "."

author

author

email

email

description

description

license

license

Value

No return value

Examples

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