#!/usr/bin/python2 | |
from distutils.core import setup, Extension | |
schedutils = Extension('schedutils', | |
sources = ['python-schedutils/schedutils.c']) | |
# don't reformat this line, Makefile parses it | |
setup(name='schedutils', | |
version='0.4', | |
description='Python module to interface with the Linux scheduler', | |
author='Arnaldo Carvalho de Melo', | |
author_email='acme@redhat.com', | |
url='http://fedoraproject.org/wiki/python-schedutils', | |
ext_modules=[schedutils]) |