kivy/setup.py

348 lines
12 KiB
Python
Raw Normal View History

#
# Kivy - Crossplatform NUI toolkit
# http://kivy.org/
#
import sys
from copy import deepcopy
from os.path import join, dirname, sep, exists
from os import walk, environ
from distutils.core import setup
from distutils.extension import Extension
2010-11-03 21:05:03 +00:00
# -----------------------------------------------------------------------------
# Detect options
#
c_options = {
'use_opengl_es2': True,
'use_opengl_debug': False,
'use_glew': False,
'use_mesagl': 'USE_MESAGL' in environ}
# -----------------------------------------------------------------------------
# Determine on which platform we are
platform = sys.platform
# Detect Python for android project (http://github.com/kivy/python-for-android)
ndkplatform = environ.get('NDKPLATFORM')
if ndkplatform is not None and environ.get('LIBLINK'):
platform = 'android'
# -----------------------------------------------------------------------------
# Cython check
try:
# check for cython
from Cython.Distutils import build_ext
have_cython = True
except ImportError:
if platform != 'android':
print '\nCython is missing, its required for compiling kivy !\n\n'
raise
# on python-for-android, cython usage is external
have_cython = False
from distutils.command.build_ext import build_ext
# -----------------------------------------------------------------------------
# Setup classes
class KivyBuildExt(build_ext):
def build_extensions(self):
print 'Build configuration is:'
for opt, value in c_options.iteritems():
print ' *', opt, ' = ', repr(value)
print 'Generate config.h'
config_h = join(dirname(__file__), 'kivy', 'graphics', 'config.h')
with open(config_h, 'w') as fd:
fd.write('// Autogenerated file for Kivy C configuration\n')
for k, v in c_options.iteritems():
fd.write('#define __%s %d\n' % (k.upper(), int(v)))
print 'Generate config.pxi'
config_pxi = join(dirname(__file__), 'kivy', 'graphics', 'config.pxi')
with open(config_pxi, 'w') as fd:
fd.write('# Autogenerated file for Kivy Cython configuration\n')
for k, v in c_options.iteritems():
fd.write('DEF %s = %d\n' % (k.upper(), int(v)))
build_ext.build_extensions(self)
# -----------------------------------------------------------------------------
2010-11-03 21:05:03 +00:00
# extract version (simulate doc generation, kivy will be not imported)
environ['KIVY_DOC_INCLUDE'] = '1'
2010-11-03 21:05:03 +00:00
import kivy
# extra build commands go in the cmdclass dict {'command-name': CommandClass}
# see tools.packaging.{platform}.build.py for custom build commands for
# portable packages. also e.g. we use build_ext command from cython if its
# installed for c extensions.
from kivy.tools.packaging.factory import FactoryBuild
cmdclass = {
'build_factory': FactoryBuild,
'build_ext': KivyBuildExt }
2010-11-03 21:05:03 +00:00
try:
# add build rules for portable packages to cmdclass
if platform == 'win32':
from kivy.tools.packaging.win32.build import WindowsPortableBuild
cmdclass['build_portable'] = WindowsPortableBuild
elif platform == 'darwin':
from kivy.tools.packaging.osx.build import OSXPortableBuild
cmdclass['build_portable'] = OSXPortableBuild
except ImportError:
print 'User distribution detected, avoid portable command.'
2010-11-03 21:05:03 +00:00
# Detect which opengl version headers to use
if platform in ('android', 'darwin'):
pass
elif platform == 'win32':
print 'Windows platform detected, force GLEW usage.'
c_options['use_glew'] = True
else:
# searching GLES headers
default_header_dirs = ['/usr/include', '/usr/local/include']
found = False
for hdir in default_header_dirs:
filename = join(hdir, 'GLES2', 'gl2.h')
if exists(filename):
found = True
print 'Found GLES 2.0 headers at', filename
break
if not found:
print 'WARNING: GLES 2.0 headers are not found'
print 'Fallback to Desktop opengl headers.'
c_options['use_opengl_es2'] = False
# -----------------------------------------------------------------------------
# declare flags
def get_modulename_from_file(filename):
2012-02-24 01:25:25 +00:00
filename = filename.replace(sep, '/')
pyx = '.'.join(filename.split('.')[:-1])
2012-02-24 01:25:25 +00:00
pyxl = pyx.split('/')
while pyxl[0] != 'kivy':
pyxl.pop(0)
if pyxl[1] == 'kivy':
pyxl.pop(0)
return '.'.join(pyxl)
class CythonExtension(Extension):
2010-11-03 21:05:03 +00:00
def __init__(self, *args, **kwargs):
Extension.__init__(self, *args, **kwargs)
self.pyrex_directives = {
'profile': 'USE_PROFILE' in environ,
'embedsignature': True}
# XXX with pip, setuptools is imported before distutils, and change
# our pyx to c, then, cythonize doesn't happen. So force again our
# sources
self.sources = args[1]
2010-12-16 22:00:14 +00:00
def merge(d1, *args):
d1 = deepcopy(d1)
for d2 in args:
for key, value in d2.iteritems():
if key in d1:
d1[key].extend(value)
else:
d1[key] = value
return d1
def determine_gl_flags():
flags = {'libraries': []}
if platform == 'win32':
flags['libraries'] = ['opengl32']
elif platform == 'darwin':
flags['extra_link_args'] = ['-framework', 'OpenGL', '-arch', 'x86_64']
flags['extra_compile_args'] = ['-arch', 'x86_64']
elif platform.startswith('freebsd'):
flags['include_dirs'] = ['/usr/local/include']
flags['extra_link_args'] = ['-L', '/usr/local/lib']
elif platform == 'android':
flags['include_dirs'] += [join(ndkplatform, 'usr', 'include')]
flags['extra_link_args'] += ['-L', join(ndkplatform, 'usr', 'lib')]
flags['libraries'] = ['GLESv2']
2010-11-03 21:05:03 +00:00
else:
flags['libraries'] = ['GL']
if c_options['use_glew']:
if platform == 'win32':
flags['libraries'] += ['glew32']
else:
flags['libraries'] += ['GLEW']
return flags
def determine_graphics_pxd():
flags = {'depends': [join(dirname(__file__), 'kivy', x) for x in [
'graphics/buffer.pxd',
'graphics/c_opengl.pxd',
'graphics/c_opengl_debug.pxd',
'graphics/compiler.pxd',
'graphics/context_instructions.pxd',
'graphics/fbo.pxd',
'graphics/instructions.pxd',
'graphics/opengl_utils.pxd',
'graphics/shader.pxd',
'graphics/texture.pxd',
'graphics/transformation.pxd',
'graphics/vbo.pxd',
'graphics/vertex.pxd']]}
return flags
base_flags = {
'libraries': ['m'],
'include_dirs': [],
'extra_links_args': [],
'extra_compile_args': []}
gl_flags = determine_gl_flags()
graphics_flags = determine_graphics_pxd()
# -----------------------------------------------------------------------------
# sources to compile
sources = {
'_event.pyx': base_flags,
'properties.pyx': base_flags,
'graphics/buffer.pyx': base_flags,
'graphics/c_opengl_debug.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/compiler.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/context_instructions.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/fbo.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/instructions.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/opengl.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/opengl_utils.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/shader.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/stencil_instructions.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/texture.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/transformation.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/vbo.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/vertex.pyx': merge(base_flags, gl_flags, graphics_flags),
'graphics/vertex_instructions.pyx': merge(base_flags, gl_flags, graphics_flags),
}
2011-02-13 15:06:19 +00:00
2010-11-05 16:55:22 +00:00
# -----------------------------------------------------------------------------
# extension modules
def get_extensions_from_sources(sources):
ext_modules = []
for pyx, flags in sources.iteritems():
pyx = join(dirname(__file__), 'kivy', pyx)
if not have_cython:
pyx = '%s.c' % pyx[:-4]
module_name = get_modulename_from_file(pyx)
depends = flags.pop('depends', [])
2012-02-24 01:14:14 +00:00
flags_clean = {}
for key, value in flags.iteritems():
if len(value):
flags_clean[key] = value
ext_modules.append(CythonExtension(module_name,
2012-02-24 01:14:14 +00:00
[pyx] + depends, **flags_clean))
return ext_modules
2010-11-05 16:55:22 +00:00
ext_modules = get_extensions_from_sources(sources)
2010-11-03 21:05:03 +00:00
# -----------------------------------------------------------------------------
# automatically detect data files
2010-11-03 21:05:03 +00:00
data_file_prefix = 'share/kivy-'
examples = {}
examples_allowed_ext = ('readme', 'py', 'wav', 'png', 'jpg', 'svg', 'json',
2011-01-31 23:25:15 +00:00
'avi', 'gif', 'txt', 'ttf', 'obj', 'mtl', 'kv')
2010-12-16 22:00:14 +00:00
for root, subFolders, files in walk('examples'):
for fn in files:
ext = fn.split('.')[-1].lower()
2010-11-03 21:05:03 +00:00
if ext not in examples_allowed_ext:
continue
filename = join(root, fn)
2010-12-16 22:00:14 +00:00
directory = '%s%s' % (data_file_prefix, dirname(filename))
2010-11-03 21:05:03 +00:00
if not directory in examples:
examples[directory] = []
examples[directory].append(filename)
# -----------------------------------------------------------------------------
2010-11-03 21:05:03 +00:00
# setup !
setup(
name='Kivy',
version=kivy.__version__,
author='Kivy Crew',
author_email='kivy-dev@googlegroups.com',
url='http://kivy.org/',
license='LGPL',
2011-01-31 22:51:04 +00:00
description='A software library for rapid development of ' + \
'hardware-accelerated multitouch applications.',
2010-11-03 21:05:03 +00:00
ext_modules=ext_modules,
cmdclass=cmdclass,
packages=[
'kivy',
'kivy.core',
'kivy.core.audio',
'kivy.core.camera',
'kivy.core.clipboard',
'kivy.core.image',
'kivy.core.gl',
2010-11-03 21:05:03 +00:00
'kivy.core.spelling',
'kivy.core.text',
'kivy.core.video',
'kivy.core.window',
'kivy.ext',
2010-11-03 21:05:03 +00:00
'kivy.graphics',
'kivy.input',
'kivy.input.postproc',
'kivy.input.providers',
'kivy.lib',
'kivy.lib.osc',
'kivy.modules',
'kivy.network',
2010-11-03 21:05:03 +00:00
'kivy.tools',
'kivy.tools.packaging',
'kivy.uix', ],
2010-11-03 21:05:03 +00:00
package_dir={'kivy': 'kivy'},
package_data={'kivy': [
'data/*.kv',
'data/*.json',
'data/fonts/*.ttf',
'data/images/*.png',
2011-04-21 17:43:31 +00:00
'data/images/*.jpg',
2011-08-21 21:47:13 +00:00
'data/images/*.gif',
2012-01-22 20:00:58 +00:00
'data/images/*.atlas',
'data/keyboards/*.json',
'data/logo/*.png',
'data/glsl/*.png',
'data/glsl/*.vs',
'data/glsl/*.fs',
2010-11-03 21:05:03 +00:00
'tools/packaging/README.txt',
'tools/packaging/win32/kivy.bat',
2011-01-31 23:49:50 +00:00
'tools/packaging/win32/kivyenv.sh',
2010-11-03 21:05:03 +00:00
'tools/packaging/win32/README.txt',
'tools/packaging/osx/kivy.sh']},
2010-11-03 21:05:03 +00:00
data_files=examples.items(),
classifiers=[
2011-04-15 19:38:29 +00:00
'Development Status :: 5 - Production/Stable',
2010-11-03 21:05:03 +00:00
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser '
'General Public License (LGPL)',
2010-11-03 21:05:03 +00:00
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Artistic Software',
'Topic :: Games/Entertainment',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Multimedia :: Graphics :: Viewers',
'Topic :: Multimedia :: Sound/Audio :: Players :: MP3',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: User Interfaces'])