mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-16 21:50:24 +00:00
Issue #6: Publish universal wheels
This commit is contained in:
parent
8fa12aff40
commit
6ff3657fdf
2 changed files with 6 additions and 6 deletions
2
setup.cfg
Normal file
2
setup.cfg
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
[bdist_wheel]
|
||||
universal=1
|
||||
10
setup.py
10
setup.py
|
|
@ -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',
|
||||
],
|
||||
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue