Conversation
pyproject.toml is the Python-standard manifest for the package. It's analogous to a package.json in JavaScript. .python-version pins the python version to 3.10. uv will download the correct version automatically. uv.lock pins all dependencies to exact hashes, analogous to package.lock/yarn.lock in JavaScript. This ensures every dev on the project gets identical dependency versions.
This commit adds a package named umsats-soti and moves the source code into it. It also adds a package script called "soti" which can be run using `uv run soti` (see pyproject.toml). Since python packages force all internal imports to use the package name, this commit also rewrites all imports across the project. Additionally, the license is copied into the umsats-soti folder so that PyPI understands how the project is licensed.
These instructions will need to be modified once soti is published on PyPI. Note that since we specify which branch to install from, I've chosen to specify dev as the install branch for now. Once this branch is merged into dev, the instructions will work, but they'll be broken until then. To test, find the git+https:// URLs and replace @dev with @feature/uv-package-manager.
Koloss0
requested changes
Nov 9, 2025
Member
Koloss0
left a comment
There was a problem hiding this comment.
Looks amazing. Just need one small change in the README.
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.
This PR adds the uv package manager to SOTI. It pins our dependencies to specific versions and makes it easy to install everything.
It also includes installation instructions in the README, for users and for contributors.
Completes #45.