diff options
author | ptmcg <ptmcg@austin.rr.com> | 2021-04-13 10:12:15 -0500 |
---|---|---|
committer | ptmcg <ptmcg@austin.rr.com> | 2021-04-13 10:12:15 -0500 |
commit | d27fd7627f3ed60b3b7a9e9f5e790d0e49107359 (patch) | |
tree | a9ccbf2b308c2d14ea1cc66013d270c86a8a4df0 | |
parent | b5b1fdd1c0a3dfffbbad206e885d59e6015015a8 (diff) | |
download | pyparsing-git-d27fd7627f3ed60b3b7a9e9f5e790d0e49107359.tar.gz |
Remove setuptools import fallback to distutils.core (distutils.core use not recommended)
-rw-r--r-- | setup.py | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -2,10 +2,7 @@ """Setup script for the pyparsing module distribution.""" -try: - from setuptools import setup -except ImportError: - from distutils.core import setup +from setuptools import setup import io import sys from pyparsing import __version__ as pyparsing_version |