Skip to content

Commit

Permalink
Use setuptools setup if it is available; add cook.cmd for windows dep…
Browse files Browse the repository at this point in the history
…loyments.
  • Loading branch information
VanL committed Jun 7, 2011
1 parent 017f97e commit 5c55a1d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
@@ -1,5 +1,11 @@
"""LittleChef's setup.py"""
from distutils.core import setup
try: from setuptools import setup
except ImportError: from distutils.core import setup
import platform

scripts = ['cook']
if platform.system() == 'Windows':
scripts += ['cook.cmd']

setup(
name="littlechef",
Expand Down

0 comments on commit 5c55a1d

Please sign in to comment.