Skip to content

Instantly share code, notes, and snippets.

@msabramo
Created March 19, 2012 16:18
Show Gist options
  • Select an option

  • Save msabramo/2117804 to your computer and use it in GitHub Desktop.

Select an option

Save msabramo/2117804 to your computer and use it in GitHub Desktop.
A stab at a setup.py for pyp (pyed piper)
from distutils.core import setup
version = '2.11'
long_description = open('README.rst').read()
setup(name='pyp',
version=version,
description="Python Power At the Prompt",
long_description=long_description,
classifiers=[],
keywords='',
author='Toby Rosen',
author_email='tobyrosen@gmail.com',
url='http://code.google.com/p/pyp/',
license='New BSD License',
scripts=['pyp'],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment