Mercurial > touhou
view setup.py @ 577:e35a083d4208
Move NextStage outside of pytouhou.vm.msg, to be able to use it from anywhere without dependency on EoSD.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Wed, 06 Aug 2014 10:50:19 +0200 |
parents | f3778145d7e7 |
children | 8a8c2e519637 |
line wrap: on
line source
# -*- encoding: utf-8 -*- import os import sys from distutils.core import setup from distutils.extension import Extension from subprocess import check_output, CalledProcessError # Cython is needed try: from Cython.Build import cythonize except ImportError: print('You don’t seem to have Cython installed. Please get a ' 'copy from http://www.cython.org/ and install it.') sys.exit(1) COMMAND = 'pkg-config' SDL_LIBRARIES = ['sdl2', 'SDL2_image', 'SDL2_mixer', 'SDL2_ttf'] GL_LIBRARIES = ['epoxy'] packages = [] extension_names = [] extensions = [] debug = False # True to generate HTML annotations and display infered types. anmviewer = False # It’s currently broken anyway. nthreads = 4 # How many processes to use for Cython compilation. # Hack to prevent `setup.py clean` from compiling Cython files. if len(sys.argv) > 1 and sys.argv[1] == 'clean': import shutil shutil.rmtree('build', ignore_errors=True) for directory, _, files in os.walk('pytouhou'): for filename in files: if filename.endswith('.c'): os.unlink(os.path.join(directory, filename)) sys.exit(0) try: sys.argv.remove('--disable-opengl') except ValueError: use_opengl = True else: use_opengl = False # Check for epoxy.pc, and don’t compile the OpenGL backend if it isn’t present. if use_opengl: try: check_output([COMMAND] + GL_LIBRARIES) except CalledProcessError: print('libepoxy not found. Please install it or pass --disable-opengl') sys.exit(1) except OSError: # Assume GL is here if we can’t use pkg-config, but display a warning. print('You don’t seem to have pkg-config installed. Please get a copy ' 'from http://pkg-config.freedesktop.org/ and install it.\n' 'Continuing without it, assuming every dependency is available.') default_libs = { 'sdl2': '-lSDL2', 'SDL2_image': '-lSDL2_image', 'SDL2_mixer': '-lSDL2_mixer', 'SDL2_ttf': '-lSDL2_ttf', 'epoxy': '-lepoxy' } def get_arguments(arg, libraries): try: return check_output([COMMAND, arg] + libraries).split() except CalledProcessError: # The error has already been displayed, just exit. sys.exit(1) except OSError: # We already said to the user pkg-config was suggested. if arg == '--cflags': return [] return [default_libs[library] for library in libraries] sdl_args = {'extra_compile_args': get_arguments('--cflags', SDL_LIBRARIES), 'extra_link_args': get_arguments('--libs', SDL_LIBRARIES)} if use_opengl: opengl_args = {'extra_compile_args': get_arguments('--cflags', GL_LIBRARIES + SDL_LIBRARIES), 'extra_link_args': get_arguments('--libs', GL_LIBRARIES + SDL_LIBRARIES)} for directory, _, files in os.walk('pytouhou'): package = directory.replace(os.path.sep, '.') if not use_opengl and package in ('pytouhou.ui.opengl', 'pytouhou.ui.opengl.shaders'): continue packages.append(package) if package not in ('pytouhou.formats', 'pytouhou.game', 'pytouhou.lib', 'pytouhou.utils', 'pytouhou.ui', 'pytouhou.ui.opengl', 'pytouhou.ui.opengl.shaders', 'pytouhou.ui.sdl'): continue if package in ('pytouhou.ui', 'pytouhou.ui.sdl'): package_args = sdl_args elif package == 'pytouhou.ui.opengl': package_args = opengl_args else: package_args = {} for filename in files: if (filename.endswith('.pyx') or filename.endswith('.py') and not filename == '__init__.py'): extension_name = '%s.%s' % (package, os.path.splitext(filename)[0]) extension_names.append(extension_name) if extension_name == 'pytouhou.lib.sdl': compile_args = sdl_args elif extension_name == 'pytouhou.ui.anmrenderer' and not anmviewer: extension_names.pop() continue elif package == 'pytouhou.formats' and extension_name != 'pytouhou.formats.anm0': continue else: compile_args = package_args extensions.append(Extension(extension_name, [os.path.join(directory, filename)], **compile_args)) # OS-specific setuptools options. try: from cx_Freeze import setup, Executable except ImportError: extra = {} else: nthreads = None # It seems Windows can’t compile in parallel. base = 'Win32GUI' if sys.platform == 'win32' else None extra = {'options': {'build_exe': {'includes': extension_names + ['glob', 'socket', 'select']}}, 'executables': [Executable(script='scripts/pytouhou', base=base)]} # Create a link to the data files (for packaging purposes) current_dir = os.path.dirname(os.path.realpath(__file__)) temp_data_dir = os.path.join(current_dir, 'pytouhou', 'data') if not os.path.exists(temp_data_dir): os.symlink(os.path.join(current_dir, 'data'), temp_data_dir) setup(name='PyTouhou', version='0.1', author='Thibaut Girka', author_email='thib@sitedethib.com', url='http://pytouhou.linkmauve.fr/', license='GPLv3', packages=packages, ext_modules=cythonize(extensions, nthreads=nthreads, annotate=debug, compiler_directives={'infer_types': True, 'infer_types.verbose': debug, 'profile': debug}, compile_time_env={'MAX_TEXTURES': 128, 'MAX_ELEMENTS': 640 * 4 * 3, 'MAX_SOUNDS': 26, 'USE_OPENGL': use_opengl}), scripts=['scripts/pytouhou'] + (['scripts/anmviewer'] if anmviewer else []), package_data={'pytouhou': ['data/menu.glade']}, **extra) # Remove the link afterwards if os.path.exists(temp_data_dir): os.unlink(temp_data_dir)