Migrate tooling configuration from setup.cfg to pyproject.toml #107
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request consolidates project configuration by moving tooling settings from setup.cfg to pyproject.toml.
The primary build logic remains in setup.py to ensure compatibility with complex C extensions. The changes are:
Move pytest and versioneer Configuration: The [tool:pytest] and [versioneer] sections have been moved to their correct locations in pyproject.toml under [tool.pytest.ini_options] and [tool.versioneer], respectively.
Remove Obsolete Sections: The now-empty [tool:pytest] and [versioneer] sections have been removed from setup.cfg.
Centralize Build Dependencies: Build dependencies are now explicitly defined in pyproject.toml's [build-system] table.
This change streamlines the configuration, making it easier to manage the project and aligning it with modern Python development practices without breaking the existing build process.
This version is tagged as v1.0.0, indicating a major release with significant changes from the previous version, v0.2.1. The jump from 0.x to 1.x signifies a stable and ready-for-production release.