Commit a00b5688 by Christopher Lambacher

Optionally support setuptools/distribute

parent 75254d67
...@@ -3,7 +3,10 @@ ...@@ -3,7 +3,10 @@
import os import os
import sys import sys
from distutils.core import setup try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def publish(): def publish():
"""Publish to Pypi""" """Publish to Pypi"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment