--- id: setoptconf-tmp version: "0.3.1" license: MIT license_treatment: permissive maintenance: abandoned --- # setoptconf-tmp — A module for retrieving program settings from various sources in a consistant method. License: permissive · Maintenance: abandoned · Downloads: 359.1K/mo ## What it is and what it does setoptconf-tmp is a temporary fork of setoptconf created to fix a compatibility issue between the original setoptconf and setuptools >= 58 that was breaking prospector builds. It provides a configuration manager that collects program settings from multiple sources—command line arguments, environment variables, INI files, JSON files, YAML files, and Python objects—and merges them into a single configuration object with priority ordering determined by the order sources are passed to the retrieval method. The package has no runtime dependencies and is designed as a minimal bridge solution. However, it is explicitly not maintained: the maintainers state it will be purged once prospector is updated to remove its setoptconf dependency. Installing this package should only be considered if you have an active prospector build that cannot be updated, and you need a temporary workaround for setuptools compatibility. Use it for: - Unblocking prospector CI builds that fail due to setoptconf incompatibility with setuptools >= 58 - Temporarily loading application settings from command line, environment, and config files in a single call - Merging settings from multiple sources with explicit priority order (e.g., CLI overrides env vars, which override files) ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Retrieves program settings from multiple sources (command line, environment variables, INI/JSON/YAML files, Python objects) and merges them with configurable priority. No, unless you are actively maintaining a prospector-dependent build that cannot be updated. The package is abandoned and explicitly temporary; the maintainers intend to remove it once prospector is updated. For new projects, use a maintained configuration library instead. ## Install pip install setoptconf-tmp uv add setoptconf-tmp poetry add setoptconf-tmp ## Installing setoptconf-tmp Before you install: Low install friction with no runtime dependencies. However, the package is explicitly abandoned and marked as a temporary fork—it was created solely to unblock prospector builds and will be removed once prospector is updated. License in practice: MIT license permits commercial and private use with minimal restrictions, requiring only license and copyright notice retention. Quickstart: import setoptconf as soc manager = soc.ConfigurationManager('myprogram') manager.add(soc.StringSetting('foo')) config = manager.retrieve( soc.CommandLineSource, soc.EnvironmentVariableSource, soc.ConfigFileSource(('.myprogramrc',)) ) Verify before relying: - Whether prospector has since been updated to remove the setoptconf dependency, making this fork obsolete - Compatibility with setuptools versions beyond 58 and current Python 3.10+ releases ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 359.1K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags configuration management library, settings from multiple sources, config file and environment variables, command line argument parsing, ini yaml json config loader, abandoned, temporary-workaround [View on SkillFed](https://skillfed.io/packages/setoptconf-tmp) · [View on PyPI](https://pypi.org/project/setoptconf-tmp/)