-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 963 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 963 Bytes
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
from distutils.core import setup, Extension
import scorep.helper
(include, lib, lib_dir, macro, linker_flags, cc, cxx) = scorep.helper.generate_compile_deps()
cmodules = []
cmodules.append(Extension('scorep.scorep_bindings',
include_dirs=include,
libraries=[],
extra_compile_args=["-std=c++11"],
sources=['src/scorep.cpp']))
setup(
name='scorep',
version='1.2',
description='This is a scorep tracing package for python',
author='Andreas Gocht',
author_email='andreas.gocht@tu-dresden.de',
url='https://github.com/score-p/scorep_binding_python',
long_description='''
This package allows tracing of python code using Score-P.
A working Score-P version is required.
For MPI tracing it uses LD_PREALOAD.
Besides this, it uses the traditional python-tracing infrastructure.
''',
packages=['scorep'],
ext_modules=cmodules
)