1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
extra_kwargs = {}
try:
from setuptools import setup
extra_kwargs['install_requires'] = ['rope >= 0.9.4']
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.4)'],
**extra_kwargs
)
|