From d19d5bd11a768992390a427f6dfafd33c7745ab0 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 23 Apr 2011 19:21:20 +0100 Subject: Update setup.py for pypi upload. --- setup.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fb6256b..a0802a2 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,26 @@ from distutils.core import setup, Extension setup(name='tracing', version='0.2', - description='debug log/trace messages', author='Lars Wirzenius', author_email='liw@liw.fi', + url='http://liw.fi/tracing/', + description='debug log/trace messages', + long_description='''\ +This package provides a couple of functions for logging debug messages. +It is sometimes practical to add a lot of debugging log messages to a +program, but having them enabled all the time results in very large +log files. Also, logging that much takes quite a bit of time. + +This module provides a way to turn such debugging or tracing messages +on and off, based on the filename they occur in. +''', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Programming Language :: Python', + 'Topic :: Software Development', + 'Topic :: System :: Logging', + ], py_modules=['tracing'], ) -- cgit v1.2.1