Skip to content

Commit

Permalink
Fix setup.py to use setuptools if available.
Browse files Browse the repository at this point in the history
  • Loading branch information
tresni committed Jul 10, 2014
1 parent 3da55a5 commit e2afeef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
build/
dist/
gcalcli.egg-info
5 changes: 4 additions & 1 deletion setup.py
@@ -1,5 +1,8 @@
#!/usr/bin/env python
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

setup(name='gcalcli',
version='3.1',
Expand Down

0 comments on commit e2afeef

Please sign in to comment.