Initial import of pypciscan
[pypcilib.git] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup, Extension
4
5 setup(name='pypciscan',
6       version='0.1',
7       description='PCI scanning from Python',
8       author='Daniel Hokka Zakrisson',
9       author_email='daniel@hozac.com',
10       ext_modules=[Extension('pypciscan', ['pypciscan.c'],
11                              libraries=['pci', 'z'])],
12      )