2 #----------------------------------------------------------------------
4 # Purpose: Distutils script for building wxPython
10 # Copyright: (c) 2000 by Total Control Software
11 # Licence: wxWindows license
12 #----------------------------------------------------------------------
17 # The full contents of the wx.build.config module used to be located
18 # here in setup.py. They were split into a separate module so it will
19 # be installed with wxPython and can then be used by the build scripts
20 # of other extension modules that wich to be wxPython compatible. The
21 # split is still fairly new and hasn't been tested by building
22 # third-party extensions yet, so expect some things to still shift
23 # back and forth, and also more stuff in config.py will get converted
26 # This script imports it as just "config" because if wxPython doesn't
27 # exist yet, then it can't be imported from wx.build.config (since
28 # wx._core doesn't exist yet.) So instead we keep the main copy of
29 # config .py in the same place as setup.py, and then copy it to
30 # wx/build as needed below.
32 sys
.setup_is_main
= __name__
== "__main__" # an icky hack!
36 #----------------------------------------------------------------------
37 # Update the packaged config file.
38 #----------------------------------------------------------------------
40 copy_file('config.py', 'wx/build', update
=1, verbose
=1)
41 CLEANUP
.append('wx/build/config.py')
43 #----------------------------------------------------------------------
44 # Update the version file
45 #----------------------------------------------------------------------
47 # The version file is unconditionally updated every time setup.py is
48 # run since the version string can change based on the UNICODE flag
50 open('wx/__version__.py', 'w').write("""\
51 # This file was generated by setup.py...
53 VERSION_STRING = '%(VERSION)s'
54 MAJOR_VERSION = %(VER_MAJOR)s
55 MINOR_VERSION = %(VER_MINOR)s
56 RELEASE_VERSION = %(VER_RELEASE)s
57 SUBREL_VERSION = %(VER_SUBREL)s
59 VERSION = (MAJOR_VERSION, MINOR_VERSION, RELEASE_VERSION,
60 SUBREL_VERSION, '%(VER_FLAGS)s')
62 RELEASE_NUMBER = RELEASE_VERSION # for compatibility
65 CLEANUP
.append('wx/__version__.py')
68 #----------------------------------------------------------------------
69 # patch distutils if it can't cope with the "classifiers" or
70 # "download_url" keywords
71 #----------------------------------------------------------------------
73 if sys
.version
< '2.2.3':
74 from distutils
.dist
import DistributionMetadata
75 DistributionMetadata
.classifiers
= None
76 DistributionMetadata
.download_url
= None
79 depends
= {'depends' : depends}
82 #----------------------------------------------------------------------
83 # Define the CORE extension module
84 #----------------------------------------------------------------------
86 msg('Preparing CORE...')
87 swig_sources
= run_swig(['core.i'], 'src', GENDIR
, PKGDIR
,
88 USE_SWIG
, swig_force
, swig_args
, swig_deps
+
95 'src/__core_rename.i',
96 'src/__core_reverse.txt',
116 copy_file('src/__init__.py', PKGDIR
, update
=1, verbose
=0)
117 CLEANUP
.append(opj(PKGDIR
, '__init__.py'))
120 # update the license files
122 for file in ['preamble.txt', 'licence.txt', 'licendoc.txt', 'lgpl.txt']:
123 copy_file(opj(WXDIR
, 'docs', file), opj('licence',file), update
=1, verbose
=0)
124 CLEANUP
.append(opj('licence',file))
125 CLEANUP
.append('licence')
129 build_locale_dir(opj(PKGDIR
, 'locale'))
130 DATA_FILES
+= build_locale_list(opj(PKGDIR
, 'locale'))
134 rc_file
= ['src/wxc.rc']
139 ext
= Extension('_core_', ['src/helpers.cpp',
141 ] + rc_file
+ swig_sources
,
143 include_dirs
= includes
,
144 define_macros
= defines
,
146 library_dirs
= libdirs
,
149 extra_compile_args
= cflags
,
150 extra_link_args
= lflags
,
154 wxpExtensions
.append(ext
)
160 # Extension for the GDI module
161 swig_sources
= run_swig(['gdi.i'], 'src', GENDIR
, PKGDIR
,
162 USE_SWIG
, swig_force
, swig_args
, swig_deps
+
163 ['src/__gdi_rename.i',
182 ext
= Extension('_gdi_', ['src/drawlist.cpp'] + swig_sources
,
183 include_dirs
= includes
,
184 define_macros
= defines
,
185 library_dirs
= libdirs
,
187 extra_compile_args
= cflags
,
188 extra_link_args
= lflags
,
191 wxpExtensions
.append(ext
)
198 # Extension for the windows module
199 swig_sources
= run_swig(['windows.i'], 'src', GENDIR
, PKGDIR
,
200 USE_SWIG
, swig_force
, swig_args
, swig_deps
+
201 ['src/__windows_rename.i',
202 'src/__windows_reverse.txt',
218 ext
= Extension('_windows_', swig_sources
,
219 include_dirs
= includes
,
220 define_macros
= defines
,
221 library_dirs
= libdirs
,
223 extra_compile_args
= cflags
,
224 extra_link_args
= lflags
,
227 wxpExtensions
.append(ext
)
232 # Extension for the controls module
233 swig_sources
= run_swig(['controls.i'], 'src', GENDIR
, PKGDIR
,
234 USE_SWIG
, swig_force
, swig_args
, swig_deps
+
235 [ 'src/__controls_rename.i',
236 'src/__controls_reverse.txt',
260 ext
= Extension('_controls_', swig_sources
,
261 include_dirs
= includes
,
262 define_macros
= defines
,
263 library_dirs
= libdirs
,
265 extra_compile_args
= cflags
,
266 extra_link_args
= lflags
,
269 wxpExtensions
.append(ext
)
274 # Extension for the misc module
275 swig_sources
= run_swig(['misc.i'], 'src', GENDIR
, PKGDIR
,
276 USE_SWIG
, swig_force
, swig_args
, swig_deps
+
277 [ 'src/__misc_rename.i',
278 'src/__misc_reverse.txt',
298 ext
= Extension('_misc_', swig_sources
,
299 include_dirs
= includes
,
300 define_macros
= defines
,
301 library_dirs
= libdirs
,
303 extra_compile_args
= cflags
,
304 extra_link_args
= lflags
,
307 wxpExtensions
.append(ext
)
312 ## Core modules that are not in the "core" namespace start here
315 swig_sources
= run_swig(['calendar.i'], 'src', GENDIR
, PKGDIR
,
316 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
317 ext
= Extension('_calendar', swig_sources
,
318 include_dirs
= includes
,
319 define_macros
= defines
,
320 library_dirs
= libdirs
,
322 extra_compile_args
= cflags
,
323 extra_link_args
= lflags
,
326 wxpExtensions
.append(ext
)
329 swig_sources
= run_swig(['grid.i'], 'src', GENDIR
, PKGDIR
,
330 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
331 ext
= Extension('_grid', swig_sources
,
332 include_dirs
= includes
,
333 define_macros
= defines
,
334 library_dirs
= libdirs
,
336 extra_compile_args
= cflags
,
337 extra_link_args
= lflags
,
340 wxpExtensions
.append(ext
)
344 swig_sources
= run_swig(['html.i'], 'src', GENDIR
, PKGDIR
,
345 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
346 ext
= Extension('_html', swig_sources
,
347 include_dirs
= includes
,
348 define_macros
= defines
,
349 library_dirs
= libdirs
,
351 extra_compile_args
= cflags
,
352 extra_link_args
= lflags
,
355 wxpExtensions
.append(ext
)
357 swig_sources
= run_swig(['webkit.i'], 'src', GENDIR
, PKGDIR
,
358 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
359 ext
= Extension('_webkit', swig_sources
,
360 include_dirs
= includes
,
361 define_macros
= defines
,
362 library_dirs
= libdirs
,
364 extra_compile_args
= cflags
,
365 extra_link_args
= lflags
,
368 wxpExtensions
.append(ext
)
370 swig_sources
= run_swig(['wizard.i'], 'src', GENDIR
, PKGDIR
,
371 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
372 ext
= Extension('_wizard', swig_sources
,
373 include_dirs
= includes
,
374 define_macros
= defines
,
375 library_dirs
= libdirs
,
377 extra_compile_args
= cflags
,
378 extra_link_args
= lflags
,
381 wxpExtensions
.append(ext
)
385 swig_sources
= run_swig(['xrc.i'], 'src', GENDIR
, PKGDIR
,
386 USE_SWIG
, swig_force
, swig_args
, swig_deps
+
387 [ 'src/_xrc_rename.i',
394 ext
= Extension('_xrc',
397 include_dirs
= includes
+ CONTRIBS_INC
,
398 define_macros
= defines
,
400 library_dirs
= libdirs
,
403 extra_compile_args
= cflags
,
404 extra_link_args
= lflags
,
406 wxpExtensions
.append(ext
)
409 #----------------------------------------------------------------------
410 # Define the GLCanvas extension module
411 #----------------------------------------------------------------------
414 msg('Preparing GLCANVAS...')
415 location
= 'contrib/glcanvas'
417 swig_sources
= run_swig(['glcanvas.i'], location
, GENDIR
, PKGDIR
,
418 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
421 if os
.name
== 'posix':
422 gl_config
= os
.popen(WX_CONFIG
+ ' --libs gl', 'r').read()[:-1]
423 gl_lflags
= gl_config
.split() + lflags
426 gl_libs
= libs
+ ['opengl32', 'glu32'] + makeLibName('gl')
429 ext
= Extension('_glcanvas',
432 include_dirs
= includes
+ CONTRIBS_INC
,
433 define_macros
= defines
,
435 library_dirs
= libdirs
,
438 extra_compile_args
= cflags
,
439 extra_link_args
= gl_lflags
,
442 wxpExtensions
.append(ext
)
445 #----------------------------------------------------------------------
446 # Define the OGL extension module
447 #----------------------------------------------------------------------
450 msg('Preparing OGL...')
451 location
= 'contrib/ogl'
453 swig_sources
= run_swig(['ogl.i'], location
, GENDIR
, PKGDIR
,
454 USE_SWIG
, swig_force
, swig_args
, swig_deps
+
455 [ '%s/_oglbasic.i' % location
,
456 '%s/_oglshapes.i' % location
,
457 '%s/_oglshapes2.i' % location
,
458 '%s/_oglcanvas.i' % location
,
459 '%s/_ogldefs.i' % location
,
462 ext
= Extension('_ogl',
465 include_dirs
= includes
+ [ location
] + CONTRIBS_INC
,
466 define_macros
= defines
+ [('wxUSE_DEPRECATED', '0')],
468 library_dirs
= libdirs
,
469 libraries
= libs
+ makeLibName('ogl'),
471 extra_compile_args
= cflags
,
472 extra_link_args
= lflags
,
475 wxpExtensions
.append(ext
)
479 #----------------------------------------------------------------------
480 # Define the STC extension module
481 #----------------------------------------------------------------------
484 msg('Preparing STC...')
485 location
= 'contrib/stc'
487 STC_H
= opj(WXDIR
, 'contrib', 'include/wx/stc')
489 # STC_H = opj(WXPREFIX, 'include/wx-%d.%d/wx/stc' % (VER_MAJOR, VER_MINOR))
491 ## NOTE: need to add something like this to the stc.bkl...
493 ## # Check if gen_iface needs to be run for the wxSTC sources
494 ## if (newer(opj(CTRB_SRC, 'stc/stc.h.in'), opj(CTRB_INC, 'stc/stc.h' )) or
495 ## newer(opj(CTRB_SRC, 'stc/stc.cpp.in'), opj(CTRB_SRC, 'stc/stc.cpp')) or
496 ## newer(opj(CTRB_SRC, 'stc/gen_iface.py'), opj(CTRB_SRC, 'stc/stc.cpp'))):
498 ## msg('Running gen_iface.py, regenerating stc.h and stc.cpp...')
500 ## os.chdir(opj(CTRB_SRC, 'stc'))
501 ## sys.path.insert(0, os.curdir)
503 ## gen_iface.main([])
507 swig_sources
= run_swig(['stc.i'], location
, GENDIR
, PKGDIR
,
508 USE_SWIG
, swig_force
,
509 swig_args
+ ['-I'+STC_H
, '-I'+location
],
510 [opj(STC_H
, 'stc.h')] + swig_deps
)
512 ext
= Extension('_stc',
515 include_dirs
= includes
+ CONTRIBS_INC
,
516 define_macros
= defines
,
518 library_dirs
= libdirs
,
519 libraries
= libs
+ makeLibName('stc'),
521 extra_compile_args
= cflags
,
522 extra_link_args
= lflags
,
525 wxpExtensions
.append(ext
)
529 #----------------------------------------------------------------------
530 # Define the IEWIN extension module (experimental)
531 #----------------------------------------------------------------------
534 msg('Preparing IEWIN...')
535 location
= 'contrib/iewin'
537 swig_files
= ['iewin.i', ]
539 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
540 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
543 ext
= Extension('_iewin', ['%s/IEHtmlWin.cpp' % location
,
544 '%s/wxactivex.cpp' % location
,
547 include_dirs
= includes
+ CONTRIBS_INC
,
548 define_macros
= defines
,
550 library_dirs
= libdirs
,
553 extra_compile_args
= cflags
,
554 extra_link_args
= lflags
,
557 wxpExtensions
.append(ext
)
560 #----------------------------------------------------------------------
561 # Define the ACTIVEX extension module (experimental)
562 #----------------------------------------------------------------------
565 msg('Preparing ACTIVEX...')
566 location
= 'contrib/activex'
567 axloc
= opj(location
, "wxie")
569 swig_files
= ['activex.i', ]
571 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
572 USE_SWIG
, swig_force
, swig_args
, swig_deps
+
573 [ '%s/_activex_ex.py' % location
])
576 ext
= Extension('_activex', ['%s/IEHtmlWin.cpp' % axloc
,
577 '%s/wxactivex.cpp' % axloc
,
580 include_dirs
= includes
+ [ axloc
],
581 define_macros
= defines
,
583 library_dirs
= libdirs
,
586 extra_compile_args
= cflags
,
587 extra_link_args
= lflags
,
590 wxpExtensions
.append(ext
)
593 #----------------------------------------------------------------------
594 # Define the GIZMOS extension module
595 #----------------------------------------------------------------------
598 msg('Preparing GIZMOS...')
599 location
= 'contrib/gizmos'
601 swig_sources
= run_swig(['gizmos.i'], location
, GENDIR
, PKGDIR
,
602 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
604 ext
= Extension('_gizmos',
605 [ '%s/treelistctrl.cpp' % opj(location
, 'wxCode/src') ] + swig_sources
,
607 include_dirs
= includes
+ [ location
, opj(location
, 'wxCode/include') ] + CONTRIBS_INC
,
608 define_macros
= defines
,
610 library_dirs
= libdirs
,
611 libraries
= libs
+ makeLibName('gizmos'),
613 extra_compile_args
= cflags
,
614 extra_link_args
= lflags
,
617 wxpExtensions
.append(ext
)
621 #----------------------------------------------------------------------
622 # Define the DLLWIDGET extension module
623 #----------------------------------------------------------------------
626 msg('Preparing DLLWIDGET...')
627 location
= 'contrib/dllwidget'
628 swig_files
= ['dllwidget_.i']
630 swig_sources
= run_swig(swig_files
, location
, '', PKGDIR
,
631 USE_SWIG
, swig_force
, swig_args
, swig_deps
)
633 # copy a contrib project specific py module to the main package dir
634 copy_file(opj(location
, 'dllwidget.py'), PKGDIR
, update
=1, verbose
=0)
635 CLEANUP
.append(opj(PKGDIR
, 'dllwidget.py'))
637 ext
= Extension('dllwidget_c', [
638 '%s/dllwidget.cpp' % location
,
641 include_dirs
= includes
+ CONTRIBS_INC
,
642 define_macros
= defines
,
644 library_dirs
= libdirs
,
647 extra_compile_args
= cflags
,
648 extra_link_args
= lflags
,
651 wxpExtensions
.append(ext
)
656 #----------------------------------------------------------------------
657 # Tools, scripts data files, etc.
658 #----------------------------------------------------------------------
663 SCRIPTS
= [opj('scripts/helpviewer'),
664 opj('scripts/img2png'),
665 opj('scripts/img2py'),
666 opj('scripts/img2xpm'),
667 opj('scripts/pyalacarte'),
668 opj('scripts/pyalamode'),
669 opj('scripts/pycrust'),
670 opj('scripts/pyshell'),
671 opj('scripts/pywrap'),
672 opj('scripts/pywrap'),
673 opj('scripts/pywxrc'),
674 opj('scripts/xrced'),
679 DATA_FILES
+= find_data_files('wx/tools/XRCed', '*.txt', '*.xrc')
680 DATA_FILES
+= find_data_files('wx/py', '*.txt', '*.ico', '*.css', '*.html')
681 DATA_FILES
+= find_data_files('wx', '*.txt', '*.css', '*.html')
687 h_files
= glob
.glob(opj("include/wx/wxPython/*.h"))
688 i_files
= glob
.glob(opj("src/*.i")) + \
689 glob
.glob(opj("src/_*.py")) + \
690 glob
.glob(opj("src/*.swg"))
692 HEADERS
= zip(h_files
, ["/wxPython"]*len(h_files
)) + \
693 zip(i_files
, ["/wxPython/i_files"]*len(i_files
))
697 if INSTALL_MULTIVERSION
:
698 EXTRA_PATH
= getExtraPath(addOpts
=EP_ADD_OPTS
)
699 open("src/wx.pth", "w").write(EXTRA_PATH
)
700 CLEANUP
.append("src/wx.pth")
706 #----------------------------------------------------------------------
707 # Do the Setup/Build/Install/Whatever
708 #----------------------------------------------------------------------
710 if __name__
== "__main__":
713 setup(name
= 'wxPython',
715 description
= DESCRIPTION
,
716 long_description
= LONG_DESCRIPTION
,
718 author_email
= AUTHOR_EMAIL
,
720 download_url
= DOWNLOAD_URL
,
722 platforms
= PLATFORMS
,
723 classifiers
= filter(None, CLASSIFIERS
.split("\n")),
726 packages
= ['wxPython',
728 'wxPython.lib.colourchooser',
729 'wxPython.lib.editor',
730 'wxPython.lib.mixins',
736 'wx.lib.colourchooser',
738 'wx.lib.floatcanvas',
747 extra_path
= EXTRA_PATH
,
749 ext_package
= PKGDIR
,
750 ext_modules
= wxpExtensions
,
752 options
= { 'build' : { 'build_base' : BUILD_BASE }
,
756 data_files
= DATA_FILES
,
759 # Override some of the default distutils command classes with my own
760 cmdclass
= { 'install' : wx_install
,
761 'install_data': wx_smart_install_data
,
762 'install_headers': wx_install_headers
,
763 'clean': wx_extra_clean
,
768 if INSTALL_MULTIVERSION
:
769 setup(name
= 'wxPython-common',
771 description
= DESCRIPTION
,
772 long_description
= LONG_DESCRIPTION
,
774 author_email
= AUTHOR_EMAIL
,
776 download_url
= DOWNLOAD_URL
,
778 platforms
= PLATFORMS
,
779 classifiers
= filter(None, CLASSIFIERS
.split("\n")),
782 package_dir
= { '': 'wxversion' }
,
783 py_modules
= ['wxversion'],
785 data_files
= [('', ['src/wx.pth'])],
787 options
= { 'build' : { 'build_base' : BUILD_BASE }
,
790 cmdclass
= { 'install_data': wx_smart_install_data
,
794 #----------------------------------------------------------------------
795 #----------------------------------------------------------------------