extras_require_demos.pkginfo_subpackage

This is an example of defining requirements in a __pkginfo__.py file.

It was created with the following code:

.. extras-require:: extra_b
    :__pkginfo__:

Attention

This module has the following additional requirements:

click<7.1.2
flask>=1.1.2
sphinx==3.0.3

These can be installed as follows:

python -m pip install extras-require-demos[extra_b]

Functions:

function_b(arg1[, arg2, arg3])

This function does something

function_b(arg1, arg2=0, arg3='abc')[source]

This function does something

Parameters
  • arg1 (any) – An argument

  • arg2 (int) – An integer argument. Default 0.

  • arg3 (str) – A string argument. Default 'abc'.