-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (59 loc) · 3.07 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
##############################################################################
# This file is part of the UncleBench benchmarking tool. #
# Copyright (C) 2019 EDF SA #
# #
# UncleBench is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# UncleBench is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with UncleBench. If not, see <http://www.gnu.org/licenses/>. #
# #
##############################################################################
# pylint: disable=line-too-long
""" Provides setup configuration """
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from ubench.release import __version__, __author__
setup(name='ubench',
version=__version__,
description=('Unclebench is a tool for automating the running of complex'
' benchmarks on HPC clusters. It is currently based on JUBE'
' (http://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/JUBE/_node.html)'
' but any benchmarking engine can be easily integrated.'
' Its architecture make it easier to handle platforms'
' settings, benchmark descriptions, sources and test cases as'
' separate resources. It provides useful commands to modify'
' parameters on the fly without having to modify the'
' benchmark or platform description files'),
install_requires=[
'JUBE>=2.2.1',
'clustershell>=1.6',
'seaborn>=0.9.0',
'matplotlib',
'jinja2',
'pyyaml',
'lxml',
'pandas',
'setuptools<=44.0.0'],
url='https://github.com/edf-hpc/unclebench',
author=__author__,
author_email='dsp-cspito-ccn-hpc@edf.fr',
scripts=['bin/ubench'],
license='GPLv3',
packages=['ubench',
'ubench.core',
'ubench.benchmark_managers',
'ubench.benchmarking_tools_interfaces',
'ubench.data_management',
'ubench.data_management.vcs',
'ubench.scheduler_interfaces'],
zip_safe=False)