forked from python-rope/rope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (48 loc) · 1.62 KB
/
setup.py
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
from distutils.core import setup, Command
import unittest
import rope
import ropetest
import ropetest.contrib
import ropetest.refactor
class RunTests(Command):
"""New setup.py command to run all tests for the package.
"""
description = "run all tests for the package"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
tests = unittest.TestSuite(ropetest.suite())
runner = unittest.TextTestRunner(verbosity=2)
runner.run(tests)
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.rst').read().splitlines(False)
end = lines.index('Getting Started')
return '\n' + '\n'.join(lines[:end]) + '\n'
setup(name='rope',
version=rope.VERSION,
description='a python refactoring library...',
long_description=get_long_description(),
author='Ali Gholami Rudi',
author_email='[email protected]',
url='http://rope.sf.net/',
packages=['rope', 'rope.base', 'rope.base.oi', 'rope.refactor',
'rope.refactor.importutils', 'rope.contrib'],
license='GNU GPL',
classifiers=classifiers,
cmdclass={
'test': RunTests,
})