Arnaldo Carvalho de Melo | 877108e | 2011-01-29 15:44:29 -0200 | [diff] [blame] | 1 | #!/usr/bin/python2 |
| 2 | |
| 3 | from distutils.core import setup, Extension |
| 4 | |
| 5 | perf = 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 | |
| 11 | setup(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]) |