make_py_pkg {pcutils} | R Documentation |
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"
)
Arguments
pkg_name |
package name |
path |
project path, default "." |
author |
author |
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"
)
}
[Package pcutils version 0.2.8 Index]