Skip to content

Commit

Permalink
Merge pull request #2561 from pwoolvett/fix/2553
Browse files Browse the repository at this point in the history
docs(userguide): Marker example for extras_require
  • Loading branch information
jaraco committed Feb 26, 2021
2 parents 8dd11d1 + 65db33b commit aad7fde
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/2553.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added userguide example for markers in extras_require -- by :user:`pwoolvett`
13 changes: 13 additions & 0 deletions docs/userguide/declarative_config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,19 @@ data_files dict 40.6.0

**find_namespace directive** - The ``find_namespace:`` directive is supported since Python >=3.3.


Notes:
1. In the ``package_data`` section, a key named with a single asterisk (``*``)
refers to all packages, in lieu of the empty string used in ``setup.py``.

2. In the ``extras_require`` section, values are parsed as ``list-semi``. This implies that in
order to include markers, they **must** be *dangling*:

.. code-block:: ini
[options.extras_require]
rest = docutils>=0.3; pack ==1.1, ==1.3
pdf =
ReportLab>=1.2
RXP
importlib-metadata; python_version < "3.8"

0 comments on commit aad7fde

Please sign in to comment.