Skip to content

Commit

Permalink
Fix: setup.py: setuptools -> distutils and one wild comment followed …
Browse files Browse the repository at this point in the history
…by ()
  • Loading branch information
kozec committed Jun 30, 2015
1 parent 4784678 commit cc14a0b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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'),
]

Expand Down

0 comments on commit cc14a0b

Please sign in to comment.