module packaged.packaged_config

Short summary

module pymyinstall.packaged.packaged_config

Defines different set of modules to install.

Functions

function truncated documentation
azure_set Modules to handle huge datasets on disk, hierarchical datasets.
ensae_set
extended_set returns a list of modules to install, an rich set to work with data and more
minimal_set returns a list of modules to add to python to get a minimal python
small_set returns a list of modules to work with pandas, numpy, ipython, ...
sphinx_theme_set list of sphinx themes
teachings_set

Documentation

Defines different set of modules to install.

pymyinstall.packaged.packaged_config.azure_set()[source]

Modules to handle huge datasets on disk, hierarchical datasets.

pymyinstall.packaged.packaged_config.ensae_set()[source]

Modules introduced by students and some others added after some reading.

pymyinstall.packaged.packaged_config.extended_set()[source]

returns a list of modules to install, an rich set to work with data and more

Returns:a list of modules to install

To install them::

for _ in small_set() + extended_set() :
    _.install(temp_folder="install")
pymyinstall.packaged.packaged_config.minimal_set()[source]

returns a list of modules to add to python to get a minimal python

Returns:a list of modules to install

To install them::

for _ in minimal_set() :
    _.install(temp_folder="install")
pymyinstall.packaged.packaged_config.small_set()[source]

returns a list of modules to work with pandas, numpy, ipython, ...

Returns:a list of modules to install

To install them::

for _ in small_set() :
    _.install(temp_folder="install")
pymyinstall.packaged.packaged_config.sphinx_theme_set()[source]

list of sphinx themes

pymyinstall.packaged.packaged_config.teachings_set()[source]

Modules implemented for my teachings.