--- id: runtime-builder version: "0.1.5" license: Copyright 2023 by Richard Kiss Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at… (full text in the JSON record) license_treatment: unclear maintenance: dormant --- # runtime-builder — Allow automatic builds in edit mode License: unclear · Maintenance: dormant · Downloads: 92.0K/mo ## What it is and what it does Runtime Builder is a build-time and optional runtime tool that automates the generation of compiled artifacts or binary blobs during wheel construction or development cycles. It lets you declare build rules in a configuration file (runtime_build) that specify how to transform source materials into artifacts, keeping source files in version control while excluding generated outputs from the repository. The package integrates with setuptools and enscons build systems, allowing fine-grained control over what goes into sdist and wheel distributions. It can rebuild artifacts on demand during development to automate the edit-test cycle, and includes a runtime hook (build_on_demand) that regenerates artifacts if needed when code is imported, provided the package is installed in the development environment. Use it for: - Include generated C/Rust binaries or compiled extensions in wheels without storing them in git. - Automate artifact rebuilding during local development when source files change, avoiding manual build steps. - Manage projects where sdist must include source materials but wheels must contain only built outputs. - Integrate custom build logic with setuptools or enscons without writing complex setup.py hooks. - Support edit-mode installs (pip install -e) that regenerate artifacts on import for rapid iteration. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Declares and executes build rules for compiled artifacts or binary blobs that should be generated at wheel build time or during development, keeping source materials in git while excluding generated outputs. No, not recommended for new projects. The package is dormant (no updates since January 2024), carries unclear license metadata, and has high install friction due to source distribution format. The use case is narrow—primarily for projects with complex build artifact management—and the lack of recent maintenance raises questions about compatibility with current Python packaging standards. Consider it only if you have an existing project already using it and need to maintain that build system. ## Install pip install runtime-builder uv add runtime-builder poetry add runtime-builder ## Installing runtime-builder Before you install: High install friction due to source distribution format. Package is dormant (no release since 2024-01-20, 937 days ago) and carries unclear license treatment, which may complicate integration into production build systems. License in practice: License treatment is unclear in the metadata; the raw text references Apache License 2.0, but SPDX field is absent and treatment is marked 'unclear'. Verify actual license terms before adopting in a commercial or copyleft-sensitive context. Quickstart: # In pyproject.toml: [build-system] requires = ["runtime_builder", ...] # In your build script or module: from runtime_builder import build_on_demand build_on_demand(package, resource_path) Requires a runtime_build configuration file in the destination module directory, declaring BUILD_ARGUMENTS as a dict mapping artifact names to callables. Cannot import from the project being built due to bootstrap constraints. Verify before relying: - Whether Apache License 2.0 is the actual governing license (SPDX field is null despite raw text reference). - Current maintenance status and whether dormancy reflects stable maturity or abandonment. - Compatibility with modern setuptools and wheel build backends beyond the examples shown. - Whether importlib_resources dependency is optional or required at runtime. ## Package facts - License: Copyright 2023 by Richard Kiss Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at… (full text in the JSON record) (unclear) - Python support: unspecified - Install friction: high - Maintenance: dormant - Downloads: 92.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags build artifacts at wheel build time, runtime artifact generation, compiled output in wheels, binary blob builder, dynamic build during development, edit-time artifact rebuilding, setuptools build integration, build-automation, wheel-packaging, artifact-generation [View on SkillFed](https://skillfed.io/packages/runtime-builder) · [View on PyPI](https://pypi.org/project/runtime-builder/)