Skip to content

Commit

Permalink
Merge pull request #58 from jdufresne/setuptools
Browse files Browse the repository at this point in the history
Use setuptools in setup.py as recommended by Python Packaging User Guide
  • Loading branch information
decalage2 committed Feb 4, 2017
2 parents 7cbc404 + 894bdff commit 40dded3
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,10 @@

#--- IMPORTS ------------------------------------------------------------------

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

#from distutils.command.install import INSTALL_SCHEMES
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

import sys, os, fnmatch

Expand Down

0 comments on commit 40dded3

Please sign in to comment.