vim/sadness/ropevim/src/ropemode/setup.py @ b22f63a615ef
Clean up Zsh aliases.
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Tue, 21 Jun 2011 14:47:33 -0400 |
| parents | 48cacfdc2ca6 |
| children | (none) |
extra_kwargs = {} try: from setuptools import setup extra_kwargs['install_requires'] = ['rope >= 0.9.2'] except ImportError: from distutils.core import setup import ropemode classifiers=[ 'Development Status :: 4 - Beta', 'Operating System :: OS Independent', 'Environment :: X11 Applications', 'Environment :: Win32 (MS Windows)', 'Environment :: MacOS X', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Natural Language :: English', 'Programming Language :: Python', 'Topic :: Software Development'] setup(name='ropemode', version=ropemode.VERSION, description=ropemode.INFO, author='Ali Gholami Rudi', author_email='aligrudi@users.sourceforge.net', url='http://rope.sf.net/', packages=['ropemode'], license='GNU GPL', classifiers=classifiers, requires=['rope (>= 0.9.2)'], **extra_kwargs )