Skip to content

Commit

Permalink
Improve docstrings in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Jan 17, 2017
1 parent 18a3eab commit 4b48142
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_version(*args):


def get_install_requires():
"""Add conditional dependencies for Python 2 (when creating source distributions)."""
"""Get the conditional dependencies for source distributions."""
install_requires = []
if 'bdist_wheel' not in sys.argv:
if sys.version_info[:2] <= (2, 6) or sys.version_info[:2] == (3, 0):
Expand All @@ -54,7 +54,7 @@ def get_install_requires():


def get_extras_require():
"""Add conditional dependencies for Python 2 (when creating wheel distributions)."""
"""Get the conditional dependencies for wheel distributions."""
extras_require = {}
if have_environment_marker_support():
# Conditional `importlib' dependency.
Expand Down

0 comments on commit 4b48142

Please sign in to comment.