summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: d78b7bb9510aaebf40a2849e1bdee223e693d51e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python2

from distutils.core import setup, Extension

ethtool = Extension('ethtool',
		    sources = ['python-ethtool/ethtool.c'])

# don't reformat this line, Makefile parses it
setup(name='ethtool',
      version='0.1',
      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])