I just realized what's missing: the "script" parameter for setup.
py2exe needs to know what script it should run when you run the exe.

Kevin

On 12/9/05, martin <[EMAIL PROTECTED]> wrote:
>
> the output comes without errors, all files are copied flat into build
> however no exe is created, probably it is not so much a TG thing,
> py2exe samples work without problems though, at the moment I run py2exe
> on
>
>  toddswiki
>
> the fileupload tutorial wiki
>
> I type: python setup.py py2exe
>
> for
>
>
> from setuptools import setup, find_packages
> from turbogears.finddata import find_package_data
> import py2exe
>
> setup(
>     name="toddswiki",
>     version="1.0",
>     install_requires = ["TurboGears >= 0.8a4"],
>     scripts = ["toddswiki-start.py"],
>     zip_safe=False,
>     packages=find_packages(),
>     package_data = find_package_data(where='toddswiki',
>                                      package='toddswiki'),
[snip]

Reply via email to