forked from tmetsch/python-dtrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (36 loc) · 1.29 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
#!/usr/bin/env python
'''
Setup script.
Created on Oct 10, 2011
@author: tmetsch
'''
from distutils.core import setup
from distutils.extension import Extension
try:
from Cython.Distutils import build_ext
BUILD_EXTENSION = {'build_ext': build_ext}
EXT_MODULES = [Extension("dtrace", ["dtrace/dtrace_h.pxd",
"dtrace/dtrace.pyx"],
libraries=["dtrace"])]
except ImportError:
BUILD_EXTENSION = {}
EXT_MODULES = None
print('Cython seems not to be present. Currently you will only be able '
+ 'to use the ctypes wrapper. Or you can install cython and try '
+ 'again.')
setup(name='python-dtrace',
version='0.0.4',
description='DTrace consumer for Python based on libdtrace. Use Python'
+ ' as DTrace Consumer and Provider! See the homepage for'
+ ' more information.',
license='TBD',
keywords='DTrace',
url='http://tmetsch.github.com/python-dtrace/',
packages=['dtrace_ctypes'],
cmdclass=BUILD_EXTENSION,
ext_modules=EXT_MODULES,
classifiers=["Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python"
],
)