Note: This repository is auto generated by Claude Desktop with Github mcp. I am just testing it.
A simple Python project using UV for package management.
UV (pronounced "ultraviolet") is a fast Python package installer and resolver, designed as a modern alternative to pip. UV is built in Rust and offers significantly faster package installation and resolution compared to traditional tools.
- Install UV:
pip install uv- Create a virtual environment and install dependencies:
# Create and activate a virtual environment
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
uv pip install -e .python -m mypackage.mainpytestsrc/mypackage/: Main package codetests/: Test filespyproject.toml: Project configuration and dependencies
MIT