-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
36 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[metadata] | ||
name = gprof2dot | ||
version = 2022.01.31 | ||
author = Jose Fonseca | ||
author_email = jose.r.fonseca@gmail.com | ||
url = https://github.com/jrfonseca/gprof2dot | ||
description = Generate a dot graph from the output of several profilers. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
license = LGPL | ||
classifiers = | ||
Development Status :: 6 - Mature | ||
Environment :: Console | ||
Intended Audience :: Developers | ||
Operating System :: OS Independent | ||
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+) | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3.5 | ||
Topic :: Software Development | ||
|
||
[options] | ||
py_modules = gprof2dot | ||
python_requires = >=2.7 | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
gprof2dot = gprof2dot:main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
# | ||
# The purpose of this script is to enable uploading gprof2dot.py to the Python | ||
# Package Index, which can be easily done by doing: | ||
# | ||
# python3 setup.py sdist upload | ||
# | ||
# See also: | ||
# - https://packaging.python.org/distributing/ | ||
# - https://docs.python.org/3/distutils/packageindex.html | ||
# | ||
|
||
from setuptools import setup | ||
|
||
setup( | ||
name='gprof2dot', | ||
version='2021.02.21', | ||
author='Jose Fonseca', | ||
author_email='jose.r.fonseca@gmail.com', | ||
url='https://github.com/jrfonseca/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']), | ||
|
||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
classifiers=[ | ||
'Development Status :: 6 - Mature', | ||
|
||
'Environment :: Console', | ||
|
||
'Intended Audience :: Developers', | ||
|
||
'Operating System :: OS Independent', | ||
|
||
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', | ||
|
||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
|
||
'Topic :: Software Development', | ||
], | ||
) | ||
setup() |