Skip to content

Commit

Permalink
Improve setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfonseca committed Feb 27, 2017
1 parent e5585a8 commit c80e65f
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@
# python setup.py sdist upload
#
# See also:
# - https://code.google.com/archive/p/jrfonseca/issues/19
# - https://packaging.python.org/distributing/
# - https://docs.python.org/2/distutils/packageindex.html
#

import sys
from setuptools import setup

setup(
Expand All @@ -29,4 +28,24 @@

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',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',

'Topic :: Software Development',
],
)

0 comments on commit c80e65f

Please sign in to comment.