vim/sadness/bike/ide-integration/Pymacs-0.20/setup.py @ f0d5c7c0f700

vim: replace camelcasemappings with others to unshadow stuff
author Steve Losh <steve@stevelosh.com>
date Fri, 10 Dec 2010 09:55:26 -0500
parents cfd5d659d737
children (none)
#!/usr/bin/env python

import sys
sys.path.insert(0, '.')
from Pymacs import package, version
del sys.path[0]

from distutils.core import setup

setup(name=package,
      version=version,
      description='Interface between Emacs LISP and Python.',
      author='François Pinard',
      author_email='pinard@iro.umontreal.ca',
      url='http://www.iro.umontreal.ca/~pinard',
      scripts=['pymacs-services', 'pymacs-services.bat', 'rebox'],
      packages=['Pymacs'])