File: setup.py

package info (click to toggle)
update-manager 0.68.debian-7
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 6,796 kB
  • ctags: 814
  • sloc: python: 5,646; xml: 1,571; sh: 433; makefile: 356; ansic: 264
file content (17 lines) | stat: -rw-r--r-- 528 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

# fdsend setup.py
# $Id: setup.py,v 1.1.1.1 2004/11/04 06:15:03 mjp Exp $

from distutils.core import setup
from distutils.extension import Extension

setup(name = "fdsend",
      version = "0.1",
      description = "File descriptor passing (via SCM_RIGHTS)",
      author = "Michael J. Pomraning",
      author_email = "mjp-py@pilcrow.madison.wi.us",
      url = "http://pilcrow.madison.wi.us/fdsend",
      license = "GPL",
      ext_modules = [Extension(name="fdsend", sources=['fdsend.c'])],
      )