Skip to content

Instantly share code, notes, and snippets.

@bmacauley
Created March 28, 2013 13:25
Show Gist options
  • Save bmacauley/5263104 to your computer and use it in GitHub Desktop.
Save bmacauley/5263104 to your computer and use it in GitHub Desktop.
setup.py skeleton
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'My Project',
'author': 'My Name',
'url': 'URL to get it at.',
'download_url': 'Where to download it.',
'author_email': 'My email.',
'version': '0.1',
'install_requires': ['nose'],
'packages': ['NAME'],
'scripts': [],
'name': 'projectname'
}
setup(**config)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment