CF-Random PyPi Package#1
Open
prameshsharma25 wants to merge 59 commits into
Open
Conversation
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.
CF-Random: Convert to Installable Python Package
Summary
Converts CF-Random from a collection of ad-hoc scripts into a properly structured, pip-installable Python package following PEP 517/518 standards. This makes the tool significantly easier to install, use as a library, and distribute to the broader scientific community.
Motivation
Previously, using CF-Random required manual path management and script-level execution with no standard installation procedure. This PR removes that friction by:
pip install .import cf_random)cf-randomCLI entry point for command-line workflowspip install cf-random)Changes
New files
pyproject.tomlsetup.pycf_random/__init__.pycf_random/main.pycf_random/cli.pycf-random)INSTALL.md.gitignoreAll existing classes (
TMScoreCalAllVarFS,BaseTMScore,ConvertM2S,TMScoreFSMulti,MSAVariableMultimer, etc.) are unchanged. The packaging layer wraps them without modifying behavior.Installation
Usage
CLI
# Show all options cf-random --helpAs a library
Testing
All existing pytest tests pass after restructuring. Import paths updated to reflect the new
cf_random.*namespace.Notes