Skip to content

Instantly share code, notes, and snippets.

@maraca
Created March 15, 2011 05:46
Show Gist options
  • Save maraca/870358 to your computer and use it in GitHub Desktop.
Save maraca/870358 to your computer and use it in GitHub Desktop.
#!/usr/bin/python2.6
from setuptools import setup
setup(
name='gisty',
version='0.1',
description='Upload your code to gist.github.com based on https://gist.github.com/763188',
keywords='Gist Github',
package_dir = {'': 'src'},
install_requires = ['mechanize', ],
entry_points = {
'console_scripts': [
'gisty = gisty',
]
},
zip_safe = False,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment