File: setup.py

package info (click to toggle)
python2.2-libplot 1.0.2-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 100 kB
  • ctags: 182
  • sloc: ansic: 372; python: 178; makefile: 72; sh: 3
file content (27 lines) | stat: -rw-r--r-- 881 bytes parent folder | download
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
#!/usr/bin/python2.2
#
# $Id: setup.py,v 1.2 2000/10/09 05:42:57 mrnolta Exp $
#
# distutils setup file for libplot contributed Berthold Hllmann
# <bhoel@starship.python.net>
#

from distutils.core import setup, Extension

setup (# Distribution meta-data
    name = "libplot",
    version = "1.0.2",
    author = "Mike Nolta",
    author_email = "mrnolta@users.sourceforge.net",
    url = "http://biggles.sourceforge.net/",
    description = "GNU plotutils/libplot interface for Python",

    # Description of the modules and packages in the distribution
    py_modules = ["libplot"],
    ext_modules = [Extension("_libplot", ["_libplot.i"],
                             libraries=["plot", "Xaw", "Xmu", "Xt", "SM",
                                        "ICE", "Xext", "X11"])],
    # use extra directory for libplot
    extra_path = "libplot"
    )