forked from rkern/line_profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·74 lines (68 loc) · 2.49 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import os
# Monkeypatch distutils.
import setuptools
import distutils.errors
from distutils.core import setup
from distutils.extension import Extension
from distutils.log import warn
try:
from Cython.Distutils import build_ext
cmdclass = dict(build_ext=build_ext)
line_profiler_source = '_line_profiler.pyx'
except ImportError:
cmdclass = {}
line_profiler_source = '_line_profiler.c'
if not os.path.exists(line_profiler_source):
raise distutils.errors.DistutilsError("""\
You need Cython to build the line_profiler from a git checkout, or
alternatively use a release tarball from PyPI to build it without Cython.""")
else:
warn("Could not import Cython. "
"Using the available pre-generated C file.")
long_description = """\
line_profiler will profile the time individual lines of code take to execute.
The profiler is implemented in C via Cython in order to reduce the overhead of
profiling.
Also included is the script kernprof.py which can be used to conveniently
profile Python applications and scripts either with line_profiler or with the
function-level profiling tools in the Python standard library.
"""
setup(
name = 'line_profiler',
version = '1.0',
author = 'Robert Kern',
author_email = '[email protected]',
description = 'Line-by-line profiler.',
long_description = long_description,
url = 'https://github.com/rkern/line_profiler',
ext_modules = [
Extension('_line_profiler',
sources=[line_profiler_source, 'timers.c', 'unset_trace.c'],
depends=['python25.pxd'],
),
],
license = "BSD",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: Python",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
"Topic :: Software Development",
],
py_modules = ['line_profiler', 'kernprof'],
entry_points = {
'console_scripts': [
'kernprof=kernprof:main',
],
},
cmdclass = cmdclass,
)