feat(tooling): Add pyproject.toml for consolidated Python tool configuration - #741
Merged
Conversation
…uration Consolidate Python tool configurations into a single pyproject.toml file while preserving existing code formatting standards. Key improvements: - Single source of truth for tool configurations - Dynamic dependency loading from requirements.txt files - Pytest pythonpath configuration enables running `pytest` directly - No code reformatting required - matches existing standards Technical changes: - Created pyproject.toml with: - Black: line-length=88 (default, matches existing formatting) - isort: profile=black, line-length=88 - Pylint: migrated all settings from .pylintrc (max-line-length=120) - Pytest: pythonpath=["."] fixes import resolution - Removed .pylintrc (configuration moved to pyproject.toml) Benefits: - Run `pytest` directly without `python -m pytest` workaround - All tool configs in one standardized location - Modern Python packaging standards (PEP 517/518) - No configuration duplication 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Tim020
force-pushed
the
add-pyproject-toml
branch
from
November 28, 2025 22:46
7c94476 to
232e53b
Compare
Tim020
marked this pull request as ready for review
November 28, 2025 22:55
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Consolidate Black, isort, and Pylint configurations into a single pyproject.toml file, implementing modern Python project standards and fixing pytest import issues.
Key improvements:
Technical changes:
Benefits:
🤖 Generated with Claude Code