-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
186 lines (166 loc) · 6.04 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#!/usr/bin/env python
"""
Standard python setup.py file for CrabClient.
To build : python setup.py build
To install : python setup.py install --prefix=<some dir>
To clean : python setup.py clean
To run tests: python setup.py test
"""
from __future__ import print_function
import sys
import os
from unittest import TextTestRunner, TestLoader
from glob import glob
from os.path import splitext, basename, join as pjoin
from distutils.core import setup
from distutils.cmd import Command
from distutils.command.install import INSTALL_SCHEMES
sys.path.append(os.path.join(os.getcwd(), 'src/python'))
from CRABClient import __version__ as cc_version
required_python_version = '2.6'
class TestCommand(Command):
"""
Class to handle unit tests
"""
user_options = [ ]
def initialize_options(self):
"""Init method"""
self._dir = os.getcwd()
def finalize_options(self):
"""Finalize method"""
pass
def run(self):
"""
Finds all the tests modules in test/, and runs them.
"""
# list of files to exclude,
# e.g. [pjoin(self._dir, 'test', 'exclude_t.py')]
exclude = []
# list of test files
testfiles = []
for tname in glob(pjoin(self._dir, 'test', '*_t.py')):
if not tname.endswith('__init__.py') and \
tname not in exclude:
testfiles.append('.'.join(
['test', splitext(basename(tname))[0]])
)
testfiles.sort()
try:
tests = TestLoader().loadTestsFromNames(testfiles)
except:
print("\nFail to load unit tests", testfiles)
raise
test = TextTestRunner(verbosity = 2)
test.run(tests)
class CleanCommand(Command):
"""
Class which clean-up all pyc files
"""
user_options = [ ]
def initialize_options(self):
"""Init method"""
self._clean_me = [ ]
for root, dirs, files in os.walk('.'):
for fname in files:
if fname.endswith('.pyc'):
self._clean_me.append(pjoin(root, fname))
def finalize_options(self):
"""Finalize method"""
pass
def run(self):
"""Run method"""
for clean_me in self._clean_me:
try:
os.unlink(clean_me)
except:
pass
def dirwalk(relativedir):
"""
Walk a directory tree and look-up for __init__.py files.
If found yield those dirs. Code based on
http://code.activestate.com/recipes/105873-walk-a-directory-tree-using-a-generator/
"""
idir = os.path.join(os.getcwd(), relativedir)
for fname in os.listdir(idir):
fullpath = os.path.join(idir, fname)
if os.path.isdir(fullpath) and not os.path.islink(fullpath):
for subdir in dirwalk(fullpath): # recurse into subdir
yield subdir
else:
initdir, initfile = os.path.split(fullpath)
if initfile == '__init__.py':
yield initdir
def find_packages(relativedir):
"Find list of packages in a given dir"
packages = []
for idir in dirwalk(relativedir):
package = idir.replace(os.getcwd() + '/', '')
package = package.replace(relativedir + '/', '')
package = package.replace('/', '.')
packages.append(package)
return packages
def datafiles(idir):
"""Return list of data files in provided relative dir"""
files = []
for dirname, dirnames, filenames in os.walk(idir):
for subdirname in dirnames:
files.append(os.path.join(dirname, subdirname))
for filename in filenames:
if filename[-1] == '~':
continue
files.append(os.path.join(dirname, filename))
return files
def main():
"Main function"
version = cc_version
name = "CRABClient"
description = "CMS CRAB Client"
url = \
"https://twiki.cern.ch/twiki/bin/viewauth/CMS/RunningCRAB3"
readme = "CRAB Client %s" % url
author = "",
author_email = "",
keywords = ["CRABClient"]
package_dir = \
{"CRABClient": "src/python/CRABClient", "CRABAPI": "src/python/CRABAPI"}
packages = find_packages('src/python')
data_files = [('etc', ['doc/FullConfiguration.py', 'doc/ExampleConfiguration.py', 'etc/crab-bash-completion.sh', 'etc/init-light.sh', 'etc/init-light.csh', 'etc/init-light-pre.sh'])] # list of tuples whose entries are (dir, [data_files])
cms_license = "CMS experiment software"
classifiers = [
"Development Status :: 3 - Production/Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: CMS/CERN Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
if sys.version < required_python_version:
msg = "I'm sorry, but %s %s requires Python %s or later."
print(msg % (name, version, required_python_version))
sys.exit(1)
# set default location for "data_files" to
# platform specific "site-packages" location
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
setup(
name = name,
version = version,
description = description,
long_description = readme,
keywords = keywords,
packages = packages,
package_dir = package_dir,
data_files = data_files,
scripts = datafiles('bin'),
requires = ['python (>=2.6)'],
classifiers = classifiers,
cmdclass = {'test': TestCommand, 'clean': CleanCommand},
author = author,
author_email = author_email,
url = url,
license = cms_license,
)
if __name__ == "__main__":
main()