Differences between revisions 1 and 13 (spanning 12 versions)
Revision 1 as of 2004-01-13 13:01:28
Size: 1098
Editor: cache1-1-ffm-vpn
Comment:
Revision 13 as of 2015-04-13 01:24:24
Size: 686
Editor: LincolnFpv
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Question =
I got inspired by an article in [http://www.xmldatabases.org/WK/blog/1094?t=item Inspirational Technology] and added some configuration-option to the software as an XML-File.

In times before I just did a {{{copy \develeopment\somefile.ini \distribuiton\somefile.ini }}} after runing Py2Exe.

But after combining Py2Exe with Innosetup, it was really crucial to get these files copied to the Py2Exe dist-Directory during the Py2Exe Buildrun.

= Solution =
It was present all times in Py2Exe. But I did not really understand how to use it :)))

{{{
#!python
setup(
    options = options,
    # The lib directory contains everything except the executables and the python dll.
    zipfile = zipfile,
    windows = [wxprog],
    # use out build_installer class as extended py2exe build command
    cmdclass = {"py2exe": build_installer},
    packages = ["encodings"],
    data_files=[("prog",["kategorien.xml",])]
    )
}}}

The crucial line is
{{{
#!python
    data_files=[("prog",["kategorien.xml",])
]
}}}
here you are supposed to supply a list of tuples
[[HTML(<iframe src="https://www.ustream.tv/embed/10526595" width="480" height="480"></iframe>)]]Friends call her Vonnie and her husband doesn't like it at a lot of. For a while he's experienced Utah and when he will never move. The favorite hobby for my children and me is body building but I struggle to find time so as. Data processing exactly what he does in his day job role. If you want to get the full story check out his website: http://www.streamingsmile.com/profile.php?u=[[http://www.telegraph.Co.uk/search/?queryText=AmeePressu|AmeePressu]]<<BR>><<BR>>
<<BR>><<BR>>
Take a look at my website - [[http://www.streamingsmile.com/profile.php?u=AmeePressu|gas furnace repair]]

HTML(<iframe src="https://www.ustream.tv/embed/10526595" width="480" height="480"></iframe>)Friends call her Vonnie and her husband doesn't like it at a lot of. For a while he's experienced Utah and when he will never move. The favorite hobby for my children and me is body building but I struggle to find time so as. Data processing exactly what he does in his day job role. If you want to get the full story check out his website: http://www.streamingsmile.com/profile.php?u=[[http://www.telegraph.Co.uk/search/?queryText=AmeePressu|AmeePressu]]<<BR>><<BR>>

Take a look at my website - gas furnace repair

AddingConfigFiles (last edited 2015-04-13 15:08:35 by JimmyRetzlaff)