X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=782ed1e0351c2b9e84b99e1d07db388100424d6b;hb=c316e359867283b8e707070d0a52facd7413ae93;hp=f30ff9ef244c370456b40054ef30d59170c6ece6;hpb=a27148070fb16a9c3a80c066c0a0dd10cf1b8074;p=pypcilib.git diff --git a/setup.py b/setup.py index f30ff9e..782ed1e 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +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', - ext_modules=[Extension('pypciscan', ['pypciscan.c'], - libraries=['pci', 'z'])], + py_modules=['pypcimap', 'pypci'], )