File size: 6,937 Bytes
c032460 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | # Modern Python Project Structure
## Learning Objectives
- Understand modern Python project layouts
- Learn about `pyproject.toml` and `pixi.toml` configuration files
- Set up proper directory structure for CLI applications
- Implement version control best practices
## Project Layout Options
There are two main approaches to organizing Python projects:
### Flat Layout
```
my-cli/
βββ my_cli/
β βββ __init__.py
β βββ cli.py
β βββ utils.py
βββ tests/
βββ pyproject.toml
βββ README.md
```
### Src Layout (Recommended)
```
my-cli/
βββ src/
β βββ my_cli/
β βββ __init__.py
β βββ cli.py
β βββ utils.py
βββ tests/
βββ pyproject.toml
βββ pixi.toml
βββ README.md
```
**Why src layout?**
- Prevents accidental imports from development directory
- Clearer separation between source and other files
- Better for testing and packaging
## Essential Configuration Files
### pyproject.toml
The modern standard for Python project metadata:
```toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "my-cli-tool"
version = "0.1.0"
description = "An AI-powered CLI tool"
authors = [{name = "Your Name", email = "you@example.com"}]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"typer>=0.9",
"rich>=13.0",
]
[project.scripts]
my-cli = "my_cli.cli:app"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.mypy]
python_version = "3.11"
strict = true
```
### pixi.toml
Pixi-specific configuration for environment management:
```toml
[project]
name = "my-cli-tool"
version = "0.1.0"
description = "An AI-powered CLI tool"
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "win-64"]
[dependencies]
python = ">=3.11"
typer = ">=0.9"
rich = ">=13.0"
[feature.dev.dependencies]
pytest = "*"
ruff = "*"
mypy = "*"
black = "*"
[environments]
default = []
dev = ["dev"]
[tasks]
start = "python -m my_cli.cli"
test = "pytest tests/"
lint = "ruff check src/"
format = "black src/ tests/"
```
## Complete Project Structure
Here's a complete, production-ready project structure:
```
my-cli-tool/
βββ .git/ # Git repository
βββ .gitignore # Git ignore rules
βββ .vscode/ # VS Code settings
β βββ settings.json
βββ src/
β βββ my_cli/
β βββ __init__.py # Package initialization
β βββ cli.py # Main CLI entry point
β βββ commands/ # Command modules
β β βββ __init__.py
β β βββ organize.py
β β βββ stats.py
β βββ core/ # Core functionality
β β βββ __init__.py
β β βββ processor.py
β βββ utils/ # Utility functions
β βββ __init__.py
β βββ helpers.py
βββ tests/
β βββ __init__.py
β βββ conftest.py # Pytest configuration
β βββ test_cli.py
β βββ test_core.py
βββ docs/ # Documentation
β βββ README.md
βββ .gitignore
βββ pyproject.toml # Python project config
βββ pixi.toml # Pixi environment config
βββ pixi.lock # Locked dependencies
βββ LICENSE # License file
βββ README.md # Project documentation
```
## Creating the Structure
Use this script to create the structure:
```bash
#!/bin/bash
# create-project.sh
PROJECT_NAME="my-cli-tool"
PACKAGE_NAME="my_cli"
# Create directories
mkdir -p $PROJECT_NAME/{src/$PACKAGE_NAME/{commands,core,utils},tests,docs,.vscode}
# Create __init__.py files
touch $PROJECT_NAME/src/$PACKAGE_NAME/__init__.py
touch $PROJECT_NAME/src/$PACKAGE_NAME/commands/__init__.py
touch $PROJECT_NAME/src/$PACKAGE_NAME/core/__init__.py
touch $PROJECT_NAME/src/$PACKAGE_NAME/utils/__init__.py
touch $PROJECT_NAME/tests/__init__.py
# Create main files
touch $PROJECT_NAME/src/$PACKAGE_NAME/cli.py
touch $PROJECT_NAME/README.md
touch $PROJECT_NAME/LICENSE
echo "Project structure created!"
```
Or use pixi to create it:
```bash
# Initialize with pixi
pixi init my-cli-tool
cd my-cli-tool
# Add Python and dependencies
pixi add python typer rich
# Create src layout
mkdir -p src/my_cli/{commands,core,utils}
touch src/my_cli/__init__.py
touch src/my_cli/cli.py
# Create tests
mkdir tests
touch tests/__init__.py
```
## .gitignore
Essential patterns for Python projects:
```gitignore
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Pixi
.pixi/
pixi.lock
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
# Testing
.pytest_cache/
.coverage
htmlcov/
# OS
.DS_Store
Thumbs.db
```
## Version Control Setup
Initialize Git and make your first commit:
```bash
# Initialize repository
git init
# Create .gitignore (use content above)
# Use Copilot: "Generate a comprehensive .gitignore for Python projects"
# Add files
git add .
# First commit
git commit -m "Initial project structure"
# Create GitHub repository (optional)
gh repo create my-cli-tool --public --source=. --remote=origin
git push -u origin main
```
## Package Initialization
### src/my_cli/__init__.py
```python
"""My CLI Tool - An AI-powered command-line application."""
__version__ = "0.1.0"
__author__ = "Your Name"
__email__ = "you@example.com"
# Export main components
from .cli import app
__all__ = ["app"]
```
## Best Practices
1. **Use src layout**: Prevents import issues and improves testing
2. **Lock dependencies**: Commit `pixi.lock` for reproducibility
3. **Separate concerns**: Use subdirectories for commands, core logic, and utilities
4. **Write tests early**: Create test files alongside implementation
5. **Document as you go**: Update README with each feature
6. **Use type hints**: Enable better IDE support and catch errors early
## Using Copilot for Project Setup
Ask Copilot to help with:
```python
# In your IDE, write comments like:
# "Create a pyproject.toml for a CLI tool with typer and rich dependencies"
# "Generate a comprehensive .gitignore for a Python project"
# "Create a README template for a CLI application"
```
## Next Steps
With your project structure in place, you're ready to start building your CLI application. In the next chapter, we'll use Typer to create powerful command-line interfaces.
## Resources
- [Python Packaging Guide](https://packaging.python.org/)
- [Pixi Project Configuration](https://pixi.sh/latest/reference/project_configuration/)
- [PEP 518 - pyproject.toml](https://peps.python.org/pep-0518/)
|