vim/sadness/ropevim/src/ropevim/setup.py @ c925b9fad53c
vim: can I start drinking yet?
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 10 May 2011 11:27:43 -0400 |
parents |
48cacfdc2ca6 |
children |
(none) |
extra_kwargs = {}
try:
from setuptools import setup
extra_kwargs['install_requires'] = ['rope >= 0.9.3', 'ropemode']
extra_kwargs['zip_safe'] = False
except ImportError:
from distutils.core import setup
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Environment :: X11 Applications',
'Environment :: Win32 (MS Windows)',
# Have not been tested on MacOS
# 'Environment :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development']
def get_long_description():
lines = open('README.txt').read().splitlines(False)
end = lines.index('Setting Up')
return '\n' + '\n'.join(lines[:end]) + '\n'
setup(name='ropevim',
version='0.3-rc',
description='A vim plugin for using rope python refactoring library',
long_description=get_long_description(),
py_modules=['ropevim'],
author='Ali Gholami Rudi',
author_email='aligrudi@users.sourceforge.net',
url='http://rope.sf.net/ropevim.html',
license='GNU GPL',
classifiers=classifiers,
requires=['ropemode'],
data_files=[('share/vim/plugin', ['ropevim.vim'])],
**extra_kwargs
)