-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·59 lines (54 loc) · 1.77 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__version__ = None
with open('hpcbench/__init__.py') as istr:
for l in filter(lambda l: l.startswith('__version__ ='), istr):
exec(l)
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='hpcbench',
version=__version__,
description='Specify and run your benchmarks',
long_description=readme,
author='Tristan Carel',
author_email='[email protected]',
url='https://github.com/tristan0x/hpcbench',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Topic :: System :: Benchmark',
'Topic :: Utilities',
],
install_requires=[
'cached-property==1.3.0',
'docopt==0.6.2',
'matplotlib==2.0.2',
'PyYAML>=3.12',
'six==1.10',
],
entry_points="""
[console_scripts]
ben-sh = hpcbench.cli.bensh:main
ben-umb = hpcbench.cli.benumb:main
ben-plot = hpcbench.cli.benplot:main
ben-doc = hpcbench.cli.bendoc:main
[hpcbench.benchmarks]
sysbench = hpcbench.benchmark.sysbench
"""
)