forked from python-rope/rope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
95 lines (80 loc) · 2.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import io
import os.path
import sys
try:
from setuptools import Command, setup
except ImportError:
from distutils.core import Command, setup
try:
import unittest2 as unittest
except ImportError:
import unittest
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):
import ropetest
tests = unittest.TestSuite(ropetest.suite())
runner = unittest.TextTestRunner(verbosity=2)
results = runner.run(tests)
sys.exit(0 if results.wasSuccessful() else 1)
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 Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development']
def get_long_description():
lines = io.open('README.rst', 'r',
encoding='utf8').read().splitlines(False)
end = lines.index('Getting Started')
return '\n' + '\n'.join(lines[:end]) + '\n'
def get_version():
version = None
with io.open(os.path.join(
os.path.dirname(__file__), 'rope', '__init__.py')) as inif:
for line in inif:
if line.startswith('VERSION'):
version = line.split('=')[1].strip(" \t'\n")
break
return version
setup(name='rope',
version=get_version(),
description='a python refactoring library...',
long_description=get_long_description(),
author='Ali Gholami Rudi',
author_email='aligrudi@users.sourceforge.net',
url='https://github.com/python-rope/rope',
packages=['rope',
'rope.base',
'rope.base.oi',
'rope.base.oi.type_hinting',
'rope.base.oi.type_hinting.providers',
'rope.base.oi.type_hinting.resolvers',
'rope.base.utils',
'rope.contrib',
'rope.refactor',
'rope.refactor.importutils'],
license='GNU GPL',
classifiers=classifiers,
cmdclass={
'test': RunTests,
})