Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![CI](https://github.com/softinio/python-starter-template/actions/workflows/ci.yml/badge.svg)](https://github.com/softinio/python-starter-template/actions/workflows/ci.yml)

# Python AI Starter Template

A modern GitHub template for starting AI-centric Python projects with batteries included.
Expand Down Expand Up @@ -43,7 +45,7 @@ This template provides a complete development environment for AI/ML applications
- All development tools (uv, ruff, pyrefly, etc.)
- Pre-commit hooks

#### Option 2: Without Nix
#### Option 2: Without Nix (You already have Python)

1. Ensure Python 3.13+ is installed
2. Install uv:
Expand All @@ -55,6 +57,18 @@ This template provides a complete development environment for AI/ML applications
uv sync
```

#### Option 3: Using uv

1. [Install uv](https://docs.astral.sh/uv/getting-started/installation/)
2. Install Python using uv:
```bash
uv python install 3.13
```
3. Install dependencies:
```bash
uv sync
```

### Development Commands

#### Running the Application
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dev = [
"coverage>=7.9.1",
"debugpy>=1.8.14",
"pre-commit>=4.2.0",
"pyrefly>=0.21.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.2.1",
Expand Down
18 changes: 18 additions & 0 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.