> On Sat, 2010-10-16 at 19:47 +0200, Sébastien Volle wrote: > > You need to install the setuptools package for your system first. > > Have a look on this page:http://pypi.python.org/pypi/setuptools
I just ran into this myself. I'd suggest either including setuptools in the dependency list and install instructions on the webpage or doing something like this in setup.py: > try: > from setuptools import setup, find_packages > packages=find_packages() >except ImportError: > from distutils.core import setup > packages=['cocos', 'cocos.sprite', ...] # Long list of cocos packages I think it'd probably be best to just put it in the instructions - find_packages() is too nice to go without. JB -- You received this message because you are subscribed to the Google Groups "cocos2d discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/cocos-discuss?hl=en.
