Re: [pygame] Pygame's future beyond 1.8
by Alex Holkner other posts by this author
Aug 21 2006 4:56AM messages near this date
Re: [pygame] Pygame's future beyond 1.8
|
Re: [pygame] Pygame's future beyond 1.8
flyaflya wrote:
> Don't remove the C pygame,I think spliting C pygame and ctypes-pygame
> to two separate projects is a good idea,So we will have more
> chioce,and ctypes-pygame can have special features itself and needn't
> to be compatible with C pygame.
> Maybe a reason I choice C pygame is because py2exe can't bundle the
> dll files ctypes need to the exe file.
Pygame-ctypes works fine with py2exe. I used the setup.py:
---
from distutils.core import setup
import py2exe
setup(windows=['sample.py'],
options={
'py2exe': {
'excludes': ['Numeric', 'numarray', 'numpy']
}
})
---
The default icon and font are missing, but that is a fixable problem.
Alex.
Thread:
Richard Jones
renesd
Peter Shinners
renesd
Greg Ewing
Richard Jones
John Eriksson
Simon Wittber
Richard Jones
renesd
Alex Holkner
Marcus von Appen
Phil Hassey
Marcus von Appen
Alex Holkner
renesd
Phil Hassey
renesd
Marcus von Appen
Luke Paireepinart
renesd
Flyaflya
Alex Holkner
Phil Hassey
Rikard Bosnjakovic
Alex Holkner
James Paige
Phil Hassey
Peter Shinners
Richard Jones
|