mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-16 21:50:24 +00:00
Merge pull request #14 from allanhaywood/issue13-setup-does-not-fallback-to-distutils
Fixing issue13: setup.py does not fallback to using distutils
This commit is contained in:
commit
166b07a463
1 changed files with 4 additions and 1 deletions
5
setup.py
5
setup.py
|
|
@ -1,5 +1,8 @@
|
|||
#!/usr/bin/env python
|
||||
from setuptools import setup
|
||||
try:
|
||||
from setuptools import setup
|
||||
except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name='contextlib2',
|
||||
|
|
|
|||
Loading…
Reference in a new issue