summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: ee8c0943327c5be67ca71b89b69ba220b469f492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from distutils.core import setup, Extension

module1 = Extension('createprocess',
                    sources=['createprocess.c'])

setup(name='cpopen',
      version='1.0',
      description='Creates a subprocess in simpler safer manner',
      py_modules=['cpopen'],
      author='Yaniv Bronhaim',
      author_email='ybronhei@redhat.com',
      url='redhat.com',
      ext_modules=[module1])