Browse Source

Making a univeral wheel that supports both Python 2 and 3.

Dan Helfman 9 years ago
parent
commit
8e3a2c7a85
2 changed files with 5 additions and 2 deletions
  1. 3 0
      setup.cfg
  2. 2 2
      setup.py

+ 3 - 0
setup.cfg

@@ -1,2 +1,5 @@
 [metadata]
 [metadata]
 description-file=README.md
 description-file=README.md
+
+[bdist_wheel]
+universal=1

+ 2 - 2
setup.py

@@ -27,9 +27,9 @@ setup(
             'borgmatic = borgmatic.command:main',
             'borgmatic = borgmatic.command:main',
         ]
         ]
     },
     },
-    obsoletes=(
+    obsoletes=[
         'atticmatic',
         'atticmatic',
-    ),
+    ],
     tests_require=(
     tests_require=(
         'flexmock',
         'flexmock',
         'pytest',
         'pytest',