-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 929 Bytes
/
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
#!/usr/bin/env python
#
# The purpose of this script is to enable uploading gprof2dot.py to the Python
# Package Index, which can be easily done by doing:
#
# python setup.py register
# python setup.py sdist upload
#
# See also:
# - https://code.google.com/p/jrfonseca/issues/detail?id=19
# - http://docs.python.org/2/distutils/packageindex.html
#
import sys
from setuptools import setup
setup(
name='gprof2dot',
version='2014.09.29',
author='Jose Fonseca',
author_email='[email protected]',
url='https://code.google.com/p/jrfonseca/wiki/Gprof2Dot',
description="Generate a dot graph from the output of several profilers.",
long_description="""
gprof2dot.py is a Python script to convert the output from many
profilers into a dot graph.
""",
license="LGPL",
py_modules=['gprof2dot'],
entry_points=dict(console_scripts=['gprof2dot=gprof2dot:main']),
)