Created
October 9, 2008 21:28
-
-
Save andreaja/15901 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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