setup.py: fixed extension names: using dot instead of / in the extension name (compat...
authorAlexander Belchenko <bialix@ukr.net>
Fri, 15 May 2009 10:31:10 +0000 (13:31 +0300)
committerAlexander Belchenko <bialix@ukr.net>
Fri, 15 May 2009 10:31:10 +0000 (13:31 +0300)
setup.py

index dd08b1876c8324e3e4a28e532461068221eef031..219f67cbba2aee0893cd03052a33ad02343d8591 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ setup(name='dulwich',
       packages=['dulwich', 'dulwich.tests'],
       scripts=['bin/dulwich', 'bin/dul-daemon'],
       ext_modules=[
-          Extension('dulwich/_objects', ['dulwich/_objects.c']),
-          Extension('dulwich/_pack', ['dulwich/_pack.c']),
+          Extension('dulwich._objects', ['dulwich/_objects.c']),
+          Extension('dulwich._pack', ['dulwich/_pack.c']),
           ],
       )