~ubuntu-branches/debian/sid/lvm2/sid

« back to all changes in this revision

Viewing changes to python/setup.py.in

  • Committer: Package Import Robot
  • Author(s): Bastian Blank
  • Date: 2013-03-03 12:33:47 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20130303123347-smfwei6dodkdth55
Tags: 2.02.98-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
 
3
#
 
4
# This file is part of LVM2.
 
5
#
 
6
# This program is free software: you can redistribute it and/or modify
 
7
# it under the terms of the GNU Lesser General Public License as published by
 
8
# the Free Software Foundation, either version 2.1 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU Lesser General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU Lesser General Public License
 
17
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 
 
19
from distutils.core import setup, Extension
 
20
 
 
21
liblvm = Extension('lvm',
 
22
                    sources = ['liblvm_python.c'],
 
23
                    libraries= ['lvm2app'],
 
24
                    library_dirs= ['@top_builddir@/liblvm'],
 
25
                    include_dirs= ['@top_builddir@/include'])
 
26
 
 
27
setup (name='lvm',
 
28
       version=@LVM_VERSION@,
 
29
       description='Python bindings for liblvm2',
 
30
       license="LGPLv2+",
 
31
       maintainer='LVM2 maintainers',
 
32
       maintainer_email='linux-lvm@redhat.com',
 
33
       url='http://sourceware.org/lvm2/',
 
34
       ext_modules=[liblvm],
 
35
)