From cc14a0b4a4721459bc7715d7f8c4b7a31533adec Mon Sep 17 00:00:00 2001 From: kozec Date: Tue, 30 Jun 2015 11:17:12 +0200 Subject: [PATCH] Fix: setup.py: setuptools -> distutils and one wild comment followed by () --- setup.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 06837a40..93d1e0a0 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python2 from distutils.core import setup -from setuptools.command.build_py import build_py +from distutils.command.build_py import build_py from subprocess import Popen, PIPE import glob, os ICON_SIZES = (16, 24, 32, 64, 128, 256) @@ -34,11 +34,10 @@ def get_version(): class BuildPyEx(build_py): """ Little extension to install command; Allows --nostupdater argument """ user_options = build_py.user_options + [ - """ - Note to self: use - # ./setup.py build_py --nostdownloader install - to enable this option - """ + # Note to self: use + # # ./setup.py build_py --nostdownloader install + # to enable this option + # ('nostdownloader', None, 'prevents installing StDownloader module; disables autoupdate capability'), ]