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"
)
No return value
if (interactive()) {
make_py_pkg("my_python_package", path = "~/projects",
author = "John Doe", description = "My Python library",
license = "MIT")
}