diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2014-11-19 13:51:56 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2014-11-19 13:51:56 +0000 |
commit | 540d2bc30990056245481426d8b00c5edc490f03 (patch) | |
tree | 3445ece37017a15c21e30ccfc0402cf1f4290458 /src | |
parent | 169c544d9eef11444648714530df1050a40b4d9b (diff) | |
download | pyparsing-git-540d2bc30990056245481426d8b00c5edc490f03.tar.gz |
Add support for WHEEL .whl distribution
Diffstat (limited to 'src')
-rw-r--r-- | src/setup.cfg | 5 | ||||
-rw-r--r-- | src/setup.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/setup.cfg b/src/setup.cfg new file mode 100644 index 0000000..981e089 --- /dev/null +++ b/src/setup.cfg @@ -0,0 +1,5 @@ +[bdist_wheel]
+universal = 1
+
+[wheel]
+universal = 1
diff --git a/src/setup.py b/src/setup.py index dac3ec7..9da7b33 100644 --- a/src/setup.py +++ b/src/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python
"""Setup script for the pyparsing module distribution."""
-from distutils.core import setup
+from setuptools import setup
import sys
import os
|