Mercurial > python-cmd2
comparison setup.py @ 387:43ce9110d5a6
fixed bad indent in setup.py
author | Catherine Devlin <catherine.devlin@gmail.com> |
---|---|
date | Mon, 24 May 2010 05:27:26 -0400 |
parents | 43ea72144e04 |
children | 49bd3dc5c205 |
comparison
equal
deleted
inserted
replaced
386:43ea72144e04 | 387:43ce9110d5a6 |
---|---|
2 try: | 2 try: |
3 from setuptools import setup, find_packages | 3 from setuptools import setup, find_packages |
4 except ImportError: | 4 except ImportError: |
5 from distutils.core import setup | 5 from distutils.core import setup |
6 def find_packages(): | 6 def find_packages(): |
7 return ['sqlpython'] | 7 return ['sqlpython'] |
8 import sys | 8 import sys |
9 | 9 |
10 python3 = sys.version_info[0] > 2 | 10 python3 = sys.version_info[0] > 2 |
11 if python3: | 11 if python3: |
12 install_requires = [] # will rely on local pyparsing_py3 copy | 12 install_requires = [] # will rely on local pyparsing_py3 copy |