Skip to content

prakashrx/python-uv-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python UV Starter

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.

About UV

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.

Setup

  1. Install UV:
pip install uv
  1. 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 .

Development

Running the Application

python -m mypackage.main

Running Tests

pytest

Project Structure

  • src/mypackage/: Main package code
  • tests/: Test files
  • pyproject.toml: Project configuration and dependencies

License

MIT

About

A simple Python project using UV for package management

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages