blob: 496d7f432fb8ee1156b3746a96144b0c608f059f [file] [log] [blame]
Arnaldo Carvalho de Melo877108e2011-01-29 15:44:29 -02001#!/usr/bin/python2
2
3from distutils.core import setup, Extension
4
5perf = Extension('perf',
6 sources = ['util/python.c', 'util/ctype.c', 'util/evlist.c',
7 'util/evsel.c', 'util/cpumap.c', 'util/thread_map.c',
8 'util/util.c', 'util/xyarray.c'],
9 include_dirs = ['util/include'])
10
11setup(name='perf',
12 version='0.1',
13 description='Interface with the Linux profiling infrastructure',
14 author='Arnaldo Carvalho de Melo',
15 author_email='acme@redhat.com',
16 license='GPLv2',
17 url='http://perf.wiki.kernel.org',
18 ext_modules=[perf])