blob: 3098123cb3e7ea1bdfc576f253d393af7c299d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/python2
from distutils.core import setup, Extension
ethtool = Extension('ethtool',
sources = ['python-ethtool/ethtool.c',
'python-ethtool/etherinfo.c', 'python-ethtool/etherinfo_obj.c'])
# don't reformat this line, Makefile parses it
setup(name='ethtool',
version='0.2',
description='Python module to interface with ethtool',
author='Harald Hoyer & Arnaldo Carvalho de Melo',
author_email='acme@redhat.com',
url='http://fedoraproject.org/wiki/python-ethtool',
ext_modules=[ethtool])
|