diff --git a/setup.py b/setup.py index d3245fae..226dd8a1 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,6 @@ # Always prefer setuptools over distutils import os, imp, sys from setuptools import setup, find_packages -try: - from __future__ import print_function - from builtins import str -except: - pass __doc__ = """ @@ -29,9 +24,11 @@ ------------------------------------------------------------------------------- """ - -if 'help' in str(sys.argv): - print(__doc__) +try: + #python3 + from builtins import str +except: + pass release = open('fandango/VERSION').read()