module packaged.packaged_config

Short summary

module pymyinstall.packaged.packaged_config

Defines different set of modules to install.

source on GitHub

Functions

function

truncated documentation

_build_set_correspondance

builds a dictionary which returns a dictionary { name: function_set }.

_function_set_name

return the name of a function (not the module)

classifiers2string

Shortens the list of classifiers into a string.

get_package_set

return a list of modules included in one the functions imported in this module

name_sets_dataframe

returns a RST tables which described all the available sets

Documentation

Defines different set of modules to install.

source on GitHub

pymyinstall.packaged.packaged_config._build_set_correspondance(module_set)

builds a dictionary which returns a dictionary { name: function_set }.

Parameters:

module_set – list of functions

Returns:

dictionary

source on GitHub

pymyinstall.packaged.packaged_config._function_set_name(f)

return the name of a function (not the module)

Parameters:

f – function

Returns:

name

New in version 1.1.

source on GitHub

pymyinstall.packaged.packaged_config.classifiers2string(li)

Shortens the list of classifiers into a string.

Parameters:

li – list

Returns:

string

Example:

['Development Status :: 4 - Beta', 'Programming Language :: Python',
 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
 'Programming Language :: Python :: 3.9', 'License :: OSI Approved :: Apache Software License']

source on GitHub

pymyinstall.packaged.packaged_config.get_package_set(name)

return a list of modules included in one the functions imported in this module

Parameters:

name – set name

Returns:

list of modules

See List of available sets of modules to get the list of available sets.

source on GitHub

pymyinstall.packaged.packaged_config.name_sets_dataframe(module_set=None)

returns a RST tables which described all the available sets

Parameters:

module_set – list of module sets or None to get all the sets described in this module

Returns:

list of dictionaries [ { "name": name1, "description": description } ]

the functions requires

source on GitHub