Skip to content

Instantly share code, notes, and snippets.

@c4urself
Created October 5, 2012 17:30
Show Gist options
  • Save c4urself/3841176 to your computer and use it in GitHub Desktop.
Save c4urself/3841176 to your computer and use it in GitHub Desktop.
Setup.py example
#!/usr/bin/env python
from distutils.core import setup
setup(name='Zachs script',
version='1.0',
description='Zach is the man',
author='Zach',
author_email='[email protected]',
packages=['mypackage'],
requires=['gspread']
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment