Issue #6: Publish universal wheels

This commit is contained in:
Nick Coghlan 2016-05-02 16:54:31 +10:00
parent 8fa12aff40
commit 6ff3657fdf
2 changed files with 6 additions and 6 deletions

2
setup.cfg Normal file
View file

@ -0,0 +1,2 @@
[bdist_wheel]
universal=1

View file

@ -1,9 +1,5 @@
#!/usr/bin/env python
from distutils.core import setup
# Technically, unittest2 is a dependency to run the tests on 2.7
# This file ignores that, since I don't want to depend on
# setuptools just to get "tests_require" support
from setuptools import setup
setup(
name='contextlib2',
@ -20,10 +16,12 @@ setup(
'License :: OSI Approved :: Python Software Foundation License',
# These are the Python versions tested, it may work on others
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)
)