msl.package_manager.create module
Create a new package.
- msl.package_manager.create.create(*names, **kwargs)[source]
Create a new package.
- Parameters:
*names – The name(s) of the package(s) to create.
**kwargs –
- author –
str The name of the author to use for the new package. If
Nonethen usesutils.get_username()to determine the author’s name. Default isNone.
- author –
- email –
str The author’s email address. If
Nonethen usesutils.get_email()to determine the author’s email address. Default isNone.
- email –
- yes –
bool If
Truethen don’t ask for verification for the author name and for the email address. This argument is only used if you do not specify the author or the email value. The verification step allows you to change the value that was automatically determined before the package is created. The default is to ask for verification before creating the package if the author or the email value was not specified. Default isFalse.
- yes –