From e1e5db22f8f38011c5aed57e09894eec2d1abecf Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 10 Jun 2016 12:34:49 -0700 Subject: [PATCH] Making a univeral wheel that supports both Python 2 and 3. --- setup.cfg | 3 +++ setup.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 12871ff0..4dd51425 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,5 @@ [metadata] description-file=README.md + +[bdist_wheel] +universal=1 diff --git a/setup.py b/setup.py index f9339766..19c1c603 100644 --- a/setup.py +++ b/setup.py @@ -27,9 +27,9 @@ setup( 'borgmatic = borgmatic.command:main', ] }, - obsoletes=( + obsoletes=[ 'atticmatic', - ), + ], tests_require=( 'flexmock', 'pytest',