File: setup-cursesmodule.py

package info (click to toggle)
jack 2.99.7-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 988 kB
  • ctags: 599
  • sloc: python: 4,234; ansic: 1,908; makefile: 45
file content (17 lines) | stat: -rwxr-xr-x 662 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

"""Setup script for the (patched) curses module distribution."""

from distutils.core import setup, Extension

setup (# Distribution meta-data
       name = "jack_curses",
       version = "1.5b1",
       description = "standard curses module, patched to include newpad() and resizeterm()",
       author = "Arne Zellentin (just for the patch!)",
       author_email = "arne@unix-ag.org",
       url = "http://www.home.unix-ag.org/arne/jack/",

       # Description of the modules and packages in the distribution
       ext_modules = [ Extension('jack_cursesmodule', ['cursesmodule/jack_cursesmodule.c'], libraries=["ncurses"]) ]
      )