加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
Jose Fonseca 提交于 2019-11-30 20:32 . Bump version.
#!/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='2019.11.30',
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',
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化