Fix: include config.h to resolve HAVE_DLMOPEN
[lttng-ust.git] / python-lttngust / setup.py.in
CommitLineData
de4dee04
PP
1# -*- coding: utf-8 -*-
2#
bf261856 3# Copyright (C) 2015 - Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
de4dee04
PP
4#
5# This library is free software; you can redistribute it and/or modify it under
6# the terms of the GNU Lesser General Public License as published by the Free
7# Software Foundation; version 2.1 of the License.
8#
9# This library is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12# details.
13#
14# You should have received a copy of the GNU Lesser General Public License
15# along with this library; if not, write to the Free Software Foundation, Inc.,
16# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
bf261856 18from distutils.core import setup, Extension
de4dee04 19
f92d03ee 20
bf261856
JR
21setup(name='lttngust',
22 version='@PACKAGE_VERSION@',
f92d03ee 23 description='LTTng-UST Python agent',
bf261856
JR
24 packages=['lttngust'],
25 package_dir={'lttngust': 'lttngust'},
f92d03ee
PP
26 options={'build': {'build_base': 'build'}},
27 url='http://lttng.org',
28 license='LGPL-2.1',
29 classifiers=[
30 'Development Status :: 5 - Production/Stable',
31 'Intended Audience :: Developers',
32 'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
33 'Programming Language :: Python :: 2.7',
34 'Programming Language :: Python :: 3'
35 'Topic :: System :: Logging',
36 ])
This page took 0.024335 seconds and 4 git commands to generate.