python-lttngust/setup.py.in: update setup() fields
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Fri, 27 Nov 2015 18:04:44 +0000 (13:04 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 27 Nov 2015 19:25:10 +0000 (14:25 -0500)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
python-lttngust/setup.py.in

index 7f21c5cf957f5cd9710aeb431deeebf49c2a56ee..370fd613e1c1f0d633d50b270ce07133a5c24af1 100644 (file)
 
 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',
+      ])
This page took 0.02648 seconds and 5 git commands to generate.