Create a windows version-file from metadata stored in a simple self-written YAML file or obtained from an installed distribution.
Project description
pyinstaller-versionfile
Create a windows version-file, known as VERSIONINFO resource, from metadata stored in a simple self-written YAML file or obtained from an installed distribution. This file can be used by PyInstaller to add the version resource in the bundled application.
Background
PyInstaller provides a way to capture Windows version data through a so called version-file. The process of crafting such a version file, and especially keeping the version number updated, is a bit cumbersome. This package aims to make the creation of such a version file easier.
The key/value pairs that be specified in the version file and their official meaning are shown the following table:
Parameter Name | Description |
---|---|
CompanyName | Name of the company that produced the file, for example, "My Imaginary Company, Inc.". |
FileDescription | Description to be presented to users. It may be displayed when the user is choosing files to install. For example, "A simple app that does simple things.". |
InternalName | Internal name of the file. If the file has no internal name, this string should be the original filename, without extension. For example, 'Simple App". |
LegalCopyright | Copyright notices that apply to the file. This should include the full text of all notices, legal symbols, copyright dates, and so on. For example, "Copyright © 2000-2022, My Imaginary Company, Inc. All rights reserved.". |
OriginalFilename | Original name of the file, not including a path. This information enables an application to determine whether a file has been renamed by a user. For example, "SimpleApp.exe". |
ProductName | Name of the product with which the file is distributed, for example, "Simple App". |
Translation | Combinations of language and character sets supported by the application. See the documentation for the codes to use. Multiple values can be specified. |
Usage
pyinstaller-versionfile provides both a command line interface and a functional API.
Command line interface
pyinstaller-versionfile provides a command line interface that can be used to create a version file that can be passed to PyInstaller with the --version-file=
option.
Run
pyivf-make_version --help
to see full interface description.
The CLI command
create-version-file
from pyinstaller-versionfile < V3 is currently still available for backwards compatibility, but it is no longer actively maintained
You can specify all parameters (except translations) via CLI options. If not specified, they will be left empty.
Static information like company name or file description can also be provided from other sources, which can be selected via --source-format
:
yaml
: take the information from a YAML filedist
ordistribution
: take the information from a installed Python package by reading its distribution metadata
If --source-format
is specified, --metadata-source
must be given in addition and specify either the path to the YAML file, or the name of the Python package.
All options passed additionally can be used to overwrite the information extracted from --metadata-source
.
A complete YAML configuration looks like this:
Version: 1.2.3.4
CompanyName: My Imaginary Company
FileDescription: Simple App
InternalName: Simple App
LegalCopyright: © My Imaginary Company. All rights reserved.
OriginalFilename: SimpleApp.exe
ProductName: Simple App
Translation:
- langID: 0
charsetID: 1200
- langID: 1033
charsetID: 1252
The encoding must be UTF-8. All fields are optional, you can choose to specify only those that are of interest to you.
To create version-file from this, simple run:
pyivf-make_version --source-format yaml --metadata-source metadata.yml --outfile file_version_info.txt
where metadata.yml is the YAML configuration file from above.
To run metadata extraction from distribution call:
pyivf-make_version --source-format dist --metadata-source PackageName --outfile file_version_info.txt
Extracting Version Information
In addition to otherwise constant project data, the version number is an exception that requires additional effort. As an alternative to specifying the version directly in the YAML file or the distribution metadata, there are two options which may be more suitable, depending on the use case.
Link to an External File
Instead of writing the version string directly into the YAML file, you can also specify the (relative) path to another file. Note that this file must only contain the version string and nothing else.
Version: VERSION.txt
CompanyName: My Imaginary Company
FileDescription: Simple App
InternalName: Simple App
LegalCopyright: © My Imaginary Company. All rights reserved.
OriginalFilename: SimpleApp.exe
ProductName: Simple App
Setting the Version from the Command Line
It is also possible to set the version directly over the command line using the --version
option:
pyivf-make_version --source-format yaml --metadata-source metadata.yml --outfile file_version_info.txt --version 0.8.1.5
This can be useful if you want to use a CI build number as the version.
Extraction from distribution
Developers who has their distribution installed during development, as editable for example, may find it advantageous to realise automated versioning, e.g. with setuptools_scm. If then version is provided in the metadata of the distribution, this is where obtaining from distribution comes into play.
Functional API
You can also use pyinstaller-versionfile from your own python code by directly calling the functional API.
import pyinstaller_versionfile
pyinstaller_versionfile.create_versionfile_from_input_file(
output_file="versionfile.txt",
input_file="metadata.yml",
version="1.2.3.4" # optional, can be set to overwrite version information (equivalent to --version when using the CLI)
)
It is not necessary to use a file as input, you can also directly specify the desired values. All of them are optional and will be filled with placeholder values if not specified.
import pyinstaller_versionfile
pyinstaller_versionfile.create_versionfile(
output_file="versionfile.txt",
version="1.2.3.4",
company_name="My Imaginary Company",
file_description="Simple App",
internal_name="Simple App",
legal_copyright="© My Imaginary Company. All rights reserved.",
original_filename="SimpleApp.exe",
product_name="Simple App",
translations=[0, 1200]
)
Use this to generate version-file from distribution:
import pyinstaller_versionfile
pyinstaller_versionfile.create_versionfile_from_distribution(
output_file="versionfile.txt",
distname="myPackage"
)
Contributing
If you think you found a bug, or have a proposal for an enhancement, do not hesitate to create a new issue or submit a pull request. I will look into it as soon as possible.
Changelog
v3.0.0 (tba)
New
-
Drop compatibility with Python <3.9 [DudeNr33]
-
New option to extract information from distribution metadata instead of YAML file. [truderung]
-
New CLI parameter
--source-format
with possible valuesyaml
,distribution
,dist
to select the source for metadata. [truderung] -
New CLI command
--pyivf-make_version
with greater flexibility - you can specify all options via command line options (without needing a YAML file), or overwrite any of the parameters provided in the input file or distribution metadata. [DudeNr33]
Internal
-
Switch to Poetry for packaging.
-
Remove gitchangelog for changelog generation, as it would require a rewrite of the git history. Changelog is maintained manually.
v2.1.1 (2022-11-21)
Fix
- Add new
translations
parameter to functional API. [DudeNr33]
v2.1.0 (2022-11-20)
New
-
Add support for Translation field to specify supported languages and charsets. [DudeNr33]
-
Added a table with the official definition of the parameters in the Readme. [mkhoshbin1]
v2.0.0 (2021-04-06)
New
-
Functional API for programmatic use. [DudeNr33]
-
Drop compatibility with Python<3.6. [DudeNr33]
-
Definition of metadata and creation of version file are now handled in separate classes, and it is not strictly necessary to use a file as input. [DudeNr33]
-
Use gitchangelog for automatic changelog generation. [DudeNr33]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyinstaller_versionfile-3.0.0.tar.gz
.
File metadata
- Download URL: pyinstaller_versionfile-3.0.0.tar.gz
- Upload date:
- Size: 20.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e777ac27a0aacd1ced04086e7f09370434704591a5c3c3278f65e5ce5a148630 |
|
MD5 | 3fd51f017c9b2e4edebf04f5ffbf5e9f |
|
BLAKE2b-256 | e409bacb5d19936a23eb8e710ccd3e3edd06acfa7256969c787498119d61e53e |
File details
Details for the file pyinstaller_versionfile-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: pyinstaller_versionfile-3.0.0-py3-none-any.whl
- Upload date:
- Size: 15.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddf9ca179219827b8664a0271638e742f37aeb188dde5421e9fe9d7217f32f2b |
|
MD5 | 10f1e750ad76098c625884668f66badc |
|
BLAKE2b-256 | 9cb877372864205a7470dd75604da38c1a9cc9848e59f63c9ab15cbeba92a8c1 |