diff options
author | David Beazley <dave@dabeaz.com> | 2007-11-27 17:09:52 +0000 |
---|---|---|
committer | David Beazley <dave@dabeaz.com> | 2007-11-27 17:09:52 +0000 |
commit | 56cdc2c1679bb902d5ae588d4b4a905c51016bd0 (patch) | |
tree | 895c09c17f491a5f5e0060b48f362ef61b9e7967 /setup.py | |
parent | 673d5280801197f89534e9a7e042b3290d951790 (diff) | |
download | ply-56cdc2c1679bb902d5ae588d4b4a905c51016bd0.tar.gz |
Added eggs support
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,7 @@ -from distutils.core import setup +try: + from setuptools import setup +except ImportError: + from distutils.core import setup setup(name = "ply", description="Python Lex & Yacc", |