Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 184531
1
#!/usr/bin/env python3
2
#
3
# The purpose of this script is to enable uploading gprof2dot.py to the Python
4
# Package Index, which can be easily done by doing:
5
#
6
# python setup.py register
7
# python setup.py sdist upload
8
#
9
# See also:
10
# - https://packaging.python.org/distributing/
11
# - https://docs.python.org/2/distutils/packageindex.html
12
#
13
14
from setuptools import setup
15
16
setup(
17
name='gprof2dot',
18
version='2016.10.13',
19
author='Jose Fonseca',
20
author_email='[email protected]',
21
url='https://github.com/jrfonseca/gprof2dot',
22
description="Generate a dot graph from the output of several profilers.",
23
long_description="""
24
gprof2dot.py is a Python script to convert the output from many
25
profilers into a dot graph.
26
""",
27
license="LGPL",
28
29
py_modules=['gprof2dot'],
30
entry_points=dict(console_scripts=['gprof2dot=gprof2dot:main']),
31
32
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
33
classifiers=[
34
'Development Status :: 6 - Mature',
35
36
'Environment :: Console',
37
38
'Intended Audience :: Developers',
39
40
'Operating System :: OS Independent',
41
42
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
43
44
'Programming Language :: Python :: 2',
45
'Programming Language :: Python :: 3',
46
'Programming Language :: Python :: 3.4',
47
'Programming Language :: Python :: 3.5',
48
49
'Topic :: Software Development',
50
],
51
)
52
53