Skip to content

Commit

Permalink
Merge pull request #14 from allanhaywood/issue13-setup-does-not-fallb…
Browse files Browse the repository at this point in the history
…ack-to-distutils

    Fixing issue13: setup.py does not fallback to using distutils
  • Loading branch information
ncoghlan committed Apr 25, 2017
2 parents d533028 + 44966d3 commit 166b07a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit 166b07a

Please sign in to comment.