From 762e5f3c48ba0aabf8eb10f0af2d043afa36b142 Mon Sep 17 00:00:00 2001 From: Saniya Maheshwari Date: Sat, 11 Jun 2022 17:27:21 +0530 Subject: Changed indentation in `setup.cfg` snippets Indentation was 8 spaces. Should be 4 spaces for consistency with other `setup.cfg` snippets. Also fixed up tab/spaces glitches in other places. --- docs/userguide/entry_point.rst | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'docs') diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst index 49f4bfd6..cc3d1489 100644 --- a/docs/userguide/entry_point.rst +++ b/docs/userguide/entry_point.rst @@ -70,16 +70,16 @@ configuration: .. tab:: setup.cfg - .. code-block:: ini + .. code-block:: ini - [options.entry_points] - console_scripts = - hello-world = timmins:hello_world + [options.entry_points] + console_scripts = + hello-world = timmins:hello_world .. tab:: setup.py .. code-block:: python - + from setuptools import setup setup( @@ -152,7 +152,7 @@ Then, we can add a GUI script entry point: .. tab:: setup.py .. code-block:: python - + from setuptools import setup setup( @@ -352,7 +352,7 @@ of ``timmins-plugin-fancy``: [options.entry_points] timmins.display = - excl = timmins_plugin_fancy:excl_display + excl = timmins_plugin_fancy:excl_display .. tab:: setup.py @@ -422,8 +422,8 @@ The configuration of ``timmins-plugin-fancy`` would then change to: [options.entry_points] timmins.display = - excl = timmins_plugin_fancy:excl_display - lined = timmins_plugin_fancy:lined_display + excl = timmins_plugin_fancy:excl_display + lined = timmins_plugin_fancy:lined_display .. tab:: setup.py -- cgit v1.2.1