From f92d03ee7055393225244f341d6cf03daacffa79 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Fri, 27 Nov 2015 13:04:44 -0500 Subject: [PATCH] python-lttngust/setup.py.in: update setup() fields Signed-off-by: Philippe Proulx Signed-off-by: Mathieu Desnoyers --- python-lttngust/setup.py.in | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/python-lttngust/setup.py.in b/python-lttngust/setup.py.in index 7f21c5cf..370fd613 100644 --- a/python-lttngust/setup.py.in +++ b/python-lttngust/setup.py.in @@ -17,9 +17,20 @@ from distutils.core import setup, Extension + setup(name='lttngust', version='@PACKAGE_VERSION@', - description='Lttng ust agent', + description='LTTng-UST Python agent', packages=['lttngust'], package_dir={'lttngust': 'lttngust'}, - options={'build': {'build_base': 'build'}}) + options={'build': {'build_base': 'build'}}, + url='http://lttng.org', + license='LGPL-2.1', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3' + 'Topic :: System :: Logging', + ]) -- 2.34.1