Skip to content

noxouille/uv-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

Setup

This project uses uv for Python package and environment management.

Prerequisites

Install uv:

# Windows (PowerShell)
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

Getting Started

  1. Create virtual environment:
uv venv
  1. Activate the environment:
# Windows
.venv\Scripts\activate

# macOS/Linux
source .venv/bin/activate
  1. Install dependencies:
# Install from pyproject.toml
uv pip install -e .

# Or install specific packages
uv pip install package-name

Common Commands

# Run Python scripts
uv run python app.py

# Install a package
uv pip install requests

# Install dev dependencies
uv pip install pytest black ruff

# List installed packages
uv pip list

# Upgrade a package
uv pip install --upgrade package-name

Project Structure

  • pyproject.toml - Project configuration and dependencies
  • .python-version - Python version specification (3.11)
  • .venv/ - Virtual environment (auto-created by uv)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages