浏览代码

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

Dan Helfman 9 年之前
父节点
当前提交
8e3a2c7a85
共有 2 个文件被更改,包括 5 次插入2 次删除
  1. 3 0
      setup.cfg
  2. 2 2
      setup.py

+ 3 - 0
setup.cfg

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

+ 2 - 2
setup.py

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