Skip to content

Commit

Permalink
Tidy setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lamby committed Mar 27, 2009
1 parent d357cf1 commit cf82cbd
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,13 @@
from distutils.core import setup, Extension

setup(
name = 'fadvise',
version = '1',
author = 'Chris Lamb',
author_email = 'chris@chris-lamb.co.uk',
packages = ['fadvise'],
scripts = ['pyadvise'],
ext_modules = [Extension('_fadvise', sources=['_fadvise.c'])]
name='fadvise',
version='1',
author='Chris Lamb',
author_email='chris@chris-lamb.co.uk',
packages=['fadvise'],
scripts=['pyadvise'],
ext_modules=[
Extension('_fadvise', sources=['_fadvise.c'])
],
)

0 comments on commit cf82cbd

Please sign in to comment.