Skip to content

Instantly share code, notes, and snippets.

@andreaja
Created October 9, 2008 21:28
Show Gist options
  • Save andreaja/15901 to your computer and use it in GitHub Desktop.
Save andreaja/15901 to your computer and use it in GitHub Desktop.
# an example setup.py file that enables buildutils commands
from setuptools import setup, find_packages
try:
import buildutils
except ImportError:
pass
setup(
name='euler',
version='1.0',
description='My project euler solutions',
py_modules = ['euler'],
package_dir = { 'euler' : 'euler' },
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment