File: setup.py

package info (click to toggle)
rope 0.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 1,584 kB
  • ctags: 4,071
  • sloc: python: 24,074; makefile: 3
file content (60 lines) | stat: -rw-r--r-- 1,780 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import glob
import os
import shutil

extra_kwargs = {}
try:
    # we don't want to depend on setuptools
    # please don't use any setuptools specific API
    from setuptools import setup
    extra_kwargs['test_suite'] = 'ropetest'
except ImportError:
    from distutils.core import setup

import rope


def make_temps():
    if not os.path.exists('rope/docs'):
        os.mkdir('rope/docs')
    for name in glob.glob('docs/*.txt'):
        shutil.copy(name, 'rope/docs/')

def remove_temps():
    if os.path.exists('rope/docs'):
        shutil.rmtree('rope/docs')

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']

def get_long_description():
    lines = open('README.txt').read().splitlines(False)
    end = lines.index('Getting Started')
    return '\n' + '\n'.join(lines[:end]) + '\n'

make_temps()
try:
    setup(name='rope',
          version=rope.VERSION,
          description='a python refactoring library...',
          long_description=get_long_description(),
          author='Ali Gholami Rudi',
          author_email='aligrudi@users.sourceforge.net',
          url='http://rope.sf.net/',
          packages=['rope', 'rope.base', 'rope.base.oi', 'rope.refactor',
                    'rope.refactor.importutils', 'rope.contrib'],
          package_data={'rope': ['docs/*.txt']},
          license='GNU GPL',
          classifiers=classifiers,
          **extra_kwargs)
finally:
    remove_temps()