Skip to content
Snippets Groups Projects
Verified Commit 58be1196 authored by Eli Schwartz's avatar Eli Schwartz
Browse files

setup.py: only gate the final setup() invocation to __main__

It is easier to read if you don't need to try to figure out the flow of
a list of strings, and the non-issueful setuptools.Extension()
invocation, as they relate to __main__.
parent 6c6deb38
No related branches found
No related tags found
No related merge requests found
......@@ -7,30 +7,29 @@ os.putenv('LC_CTYPE', 'en_US.UTF-8')
pyalpm_version = '0.9.2'
if __name__ == "__main__":
cflags = ['-Wall', '-Wextra', '-Werror',
'-Wno-unused-parameter', '-Wno-incompatible-pointer-types',
'-Wno-cast-function-type', '-std=c99', '-D_FILE_OFFSET_BITS=64']
alpm = Extension('pyalpm',
libraries=['alpm'],
extra_compile_args=cflags + ['-DVERSION="%s"' % pyalpm_version],
language='C',
sources=['src/pyalpm.c',
'src/util.c',
'src/package.c',
'src/db.c',
'src/options.c',
'src/handle.c',
'src/transaction.c'],
depends=['src/handle.h',
'src/db.h',
'src/options.h',
'src/package.h',
'src/pyalpm.h',
'src/util.h'])
cflags = ['-Wall', '-Wextra', '-Werror',
'-Wno-unused-parameter', '-Wno-incompatible-pointer-types',
'-Wno-cast-function-type', '-std=c99', '-D_FILE_OFFSET_BITS=64']
alpm = Extension('pyalpm',
libraries=['alpm'],
extra_compile_args=cflags + ['-DVERSION="%s"' % pyalpm_version],
language='C',
sources=['src/pyalpm.c',
'src/util.c',
'src/package.c',
'src/db.c',
'src/options.c',
'src/handle.c',
'src/transaction.c'],
depends=['src/handle.h',
'src/db.h',
'src/options.h',
'src/package.h',
'src/pyalpm.h',
'src/util.h'])
if __name__ == "__main__":
setup(version=pyalpm_version,
ext_modules=[alpm])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment