uttl.buildout

Utilities for Buildout developed for Up There They Love.


Keywords
buildout, extension, uttl, cmake, qmake, qt, copyfile, version
License
MIT-0
Install
pip install uttl.buildout==1.0.0

Documentation

uttl.buildout

Utilities for zc.buildout for different build systems on Windows, as used by Up There They Love for developing their titles.

Usage

The uttl.buildout package will be automatically installed from PyPi when you use it in your Buildout configuration.

You can also clone the repository to disk and use the recipes directly without installing a package:

[buildout]
develop = C:\Downloads\uttl-buildout

The downside of this approach is that your configuration will be invalidated (and thus your dependencies rebuilt) when the recipes change.

Example

[buildout]
parts =
    visual-studio
    game

# find installation for visual studio 2017

[visual-studio]
recipe = uttl.buildout:vswhere
version = 2017

# build game executable

[game]
recipe = uttl.buildout:devenv
executable = ${visual-studio:product-path}
solution = SSSG.sln
project = SSSG
build = Release

Recipes

The following recipes (scripts) for zc.buildout are available in this package:

Check the source folders for detailed documentation about each recipe.

Testing the package locally

Check that you're running at least Python 3.9:

D:\Projects\uttl-buildout>python --version
Python 3.9.5

Build and install egg on system:

python setup.py install

Uploading new package

Create egg in dist/ folder:

python setup.py bdist_egg

Upload packaged egg to repository:

python -m twine upload --repository pypi dist/*