From f570a90a38da8c5b3b7169933041e4315d0ce42c Mon Sep 17 00:00:00 2001 From: Kevin Stone Date: Sun, 12 Feb 2017 10:01:42 -0800 Subject: [PATCH] Use setuptools for install. Fixes installation error. --- dmc/errors.pyc | Bin 491 -> 0 bytes setup.py | 3 +-- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 dmc/errors.pyc diff --git a/dmc/errors.pyc b/dmc/errors.pyc deleted file mode 100644 index 852e5a84e18d549ca1c272d0e114b9e6f3458f87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 491 zcmZutO-sZu5KUV@gCBokZdQ=4il-tXE=3k(!Pbj=DcxjtTi7;Bl7f5IgMZ2&CH?^? zS#>W4<|Q*3-n=)_*CGG>cq|0_IT78r6b1++V-v!FVZdeqlOcO!?3JTK0?25gOB(1MzQY=t>7fG+}Q@1EH7gBXJP^`pBz*jRPD5x_o^qcj)zQC?xun9xy2-)&NF6aWAK diff --git a/setup.py b/setup.py index 430b975..ab40769 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import os import sys -from distutils.core import setup +from setuptools import setup PACKAGES = ['dmc'] REQUIRES = ['iso8601', 'pytz', 'humanize', 'python-dateutil'] @@ -28,6 +28,5 @@ def get_init_val(val, packages=PACKAGES): package_data={'': ['LICENSE', 'NOTICE', 'README']}, license=get_init_val('license'), install_requires=REQUIRES, - requires=REQUIRES, packages=PACKAGES )