Add optional support for venv + pip install -e workflow (Fixes #6)#7
Open
AdityaGupta716 wants to merge 2 commits intoOpenScienceLabs:mainfrom
Open
Add optional support for venv + pip install -e workflow (Fixes #6)#7AdityaGupta716 wants to merge 2 commits intoOpenScienceLabs:mainfrom
AdityaGupta716 wants to merge 2 commits intoOpenScienceLabs:mainfrom
Conversation
…ceLabs#6) - Extended pyproject.toml with setuptools build-system configuration - Added package-data configuration for data files (CSV, JSON, YAML) - Allows standard Python venv + pip install -e . workflow alongside existing uv setup - Maintains backward compatibility with uv.lock and existing installation method - Improves maintainability and accessibility for contributors
- Added comprehensive instructions for standard Python venv + pip installation - Provides step-by-step guide for contributors preferring non-uv workflows - Clarifies that both methods work side-by-side without conflicts
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.
Description
This PR addresses Issue #6 by adding optional support for the standard Python
venv + pip install -eworkflow as an alternative to the existinguv-based installation.Changes Made
1. Extended
pyproject.toml[build-system]configuration with setuptools backend[tool.setuptools]configuration to support editable installations[tool.setuptools.package-data]for proper data file handling (CSV, JSON, YAML files)2. Updated
README.mdWhy This Change?
This change improves accessibility for contributors who:
uvmight not be convenientBackward Compatibility
✅ Fully backward compatible - existing
uvworkflow remains unchanged and fully functional. Both methods coexist seamlessly.Testing
The changes have been validated to ensure:
uvinstallation workflow continues to workpip install -e .workflow functions correctly