diff options
author | Metallicow <edg62702@yahoo.com> | 2014-02-22 00:22:15 -0600 |
---|---|---|
committer | Metallicow <edg62702@yahoo.com> | 2014-02-22 00:22:15 -0600 |
commit | 2a36f4434f6c4780392130d6efdc9b055cf25d09 (patch) | |
tree | 72b819a083cc7ae2c294c6c62b4149a93ddeab2a | |
parent | 2544a6b71027a1832e01f5c7f78bdfcea727f4ec (diff) | |
download | gitignore-2a36f4434f6c4780392130d6efdc9b055cf25d09.tar.gz gitignore-2a36f4434f6c4780392130d6efdc9b055cf25d09.zip |
PyInstaller .manifest
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos
into it.
*.exe.manifest
*.manifest
Example template
```
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0">
<assemblyIdentity
type="win32"
name="SourceCoder"
version="14.2.22.0"
processorArchitecture="x86"
/>
<description>Description</description>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="x86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.VC90.CRT"
version="9.0.21022.8"
processorArchitecture="x86"
publicKeyToken="1fc8b3b9a1e18e3b"
/>
</dependentAssembly>
</dependency>
</assembly>
```
-rw-r--r-- | Python.gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Python.gitignore b/Python.gitignore index 76f2a469..ad380ed3 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -22,6 +22,12 @@ var/ .installed.cfg *.egg +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.exe.manifest +*.manifest + # Installer logs pip-log.txt pip-delete-this-directory.txt |