File: setup-standalone.py

package info (click to toggle)
pilot-link 0.12.5-dfsg-2
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 6,868 kB
  • ctags: 5,811
  • sloc: ansic: 53,153; sh: 10,459; java: 2,584; perl: 2,247; python: 1,044; makefile: 991; yacc: 662; cpp: 551; xml: 39
file content (45 lines) | stat: -rw-r--r-- 1,918 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/python
#
# Copyright (c) 2005, Florent Pillet.
# 
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Library General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
# 
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library
# General Public License for more details.
# 
# You should have received a copy of the GNU Library General Public License
# along with this library; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
# 
# $Id: setup-standalone.py.in,v 1.4 2006/05/31 17:59:55 desrod Exp $

from distutils.core import setup, Extension
import sys

if sys.platform.startswith('darwin'):
    # additional link options for Mac OS X
    link_options = ['-framework','Carbon','-framework','System','-framework','IOKit']
else:
    # TODO: test on other platforms and add options as appropriate
    link_options = None

setup(name = "python-libpisock",
      version = "0.12.5",
      description = "Python bindings for the pisock library linked in a standalone module (not requiring the libpisock shared lib).",
      author = "Florent Pillet",
      author_email = "pilot-link@florentpillet.com",
      url = "http://www.pilot-link.org/",

      ext_modules = [Extension("_pisock", ["src/pisock_wrap.c"],
                               include_dirs = ['../../include'],
                               extra_objects = ['../../libpisock/.libs/libpisock.a'],
                               extra_link_args = link_options
                               )
                     ],
      package_dir = {'': 'src'},
      py_modules = ["pisock","pisockextras"])