make_py_pkg | R Documentation |
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"
)
pkg_name |
package name |
path |
project path, default "." |
author |
author |
email |
|
description |
description |
license |
license |
No return value
if (interactive()) {
make_py_pkg("my_python_package",
path = "~/projects",
author = "John Doe", description = "My Python library",
license = "MIT"
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.