home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / Blender / blender-2.37a-windows.exe / $_5_ / .blender / scripts / bpymodules / BPyBlender.py < prev    next >
Text File  |  2005-04-17  |  2KB  |  38 lines

  1. # $Id: BPyBlender.py,v 1.2 2005/04/16 05:25:42 ianwill Exp $
  2. #
  3. # --------------------------------------------------------------------------
  4. # BPyBlender.py version 0.3 Mar 20, 2005
  5. # --------------------------------------------------------------------------
  6. # helper functions to be used by other scripts
  7. # --------------------------------------------------------------------------
  8. # ***** BEGIN GPL LICENSE BLOCK *****
  9. #
  10. # This program is free software; you can redistribute it and/or
  11. # modify it under the terms of the GNU General Public License
  12. # as published by the Free Software Foundation; either version 2
  13. # of the License, or (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License
  21. # along with this program; if not, write to the Free Software Foundation,
  22. # Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  23. #
  24. # ***** END GPL LICENCE BLOCK *****
  25. # --------------------------------------------------------------------------
  26.  
  27. # Basic set of modules Blender should have in all supported platforms.
  28. # The second and third lines are the contents of the Python23.zip file
  29. # included with Windows Blender binaries along with zlib.pyd.
  30. # Other platforms are assumed to have Python installed.
  31. basic_modules = [
  32. 'Blender',
  33. 'chunk','colorsys','copy','copy_reg','gzip','os','random','repr','stat',
  34. 'string','StringIO','types','UserDict','webbrowser','whrandom',
  35. 'zlib', 'math',
  36. 'BPyBlender', 'BPyRegistry'
  37. ]
  38.