forked from pwaller/pyprof2calltree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.47 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
from setuptools import setup
version = '1.3.2'
classifiers = """\
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: X11 Applications :: KDE
License :: OSI Approved :: BSD License
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python :: 2.5
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Topic :: Desktop Environment :: K Desktop Environment (KDE)
Topic :: Software Development
Topic :: Software Development :: Quality Assurance
Topic :: System :: System Shells
Topic :: Utilities
"""
setup(
name='pyprof2calltree',
version=version,
description="Help visualize profiling data from cProfile with kcachegrind and qcachegrind",
long_description=open('README.txt').read(),
keywords='profiler visualization programming tool kde kcachegrind qcachegrind',
classifiers=[c for c in classifiers.split("\n") if c and c.strip()],
author='Olivier Grisel',
author_email='[email protected]',
maintainer='Peter Waller',
maintainer_email='[email protected]',
url='http://github.com/pwaller/pyprof2calltree/',
license='BSD',
py_modules = ['pyprof2calltree'],
zip_safe=True,
entry_points = {
'setuptools.installation': [
'eggsecutable = pyprof2calltree:main',
],
'console_scripts': [
'pyprof2calltree = pyprof2calltree:main',
],
}
)