Skip to content

Commit

Permalink
Optionally support setuptools/distribute
Browse files Browse the repository at this point in the history
  • Loading branch information
lambacck committed Apr 4, 2011
1 parent 75254d6 commit a00b568
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -3,7 +3,10 @@
import os
import sys

from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

def publish():
"""Publish to Pypi"""
Expand Down

0 comments on commit a00b568

Please sign in to comment.