Add the missing features of pypciscan to pypci's get_devices, and drop the former...
[pypcilib.git] / setup.py
index 4295492..782ed1e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,11 +3,9 @@
 from distutils.core import setup, Extension
 
 setup(name='pypciscan',
-      version='0.1',
+      version='0.2',
       description='PCI scanning from Python',
-      author='Daniel Hokka Zakrisson',
+      author='Daniel Hokka Zakrisson and Stephen Soltesz',
       author_email='daniel@hozac.com',
-      py_modules=['pypcimap'],
-      ext_modules=[Extension('pypciscan', ['pypciscan.c'],
-                            libraries=['pci', 'z'])],
+      py_modules=['pypcimap', 'pypci'],
      )