# py-hello **Repository Path**: lsgx/py-hello ## Basic Information - **Project Name**: py-hello - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-09-02 - **Last Updated**: 2026-09-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Python Project Template A modern Python project template with `pyproject.toml`, testing, linting, and cross-platform support. ## Features - ๐Ÿ“ฆ **pyproject.toml** - Modern Python project configuration - ๐Ÿงช **pytest** - Testing framework with coverage - ๐Ÿ” **pylint** - Code quality checking - ๐Ÿ“ **autopep8** - Automatic code formatting - ๐Ÿ”ฌ **mypy** - Static type checking - ๐Ÿ”„ **pre-commit** - Git hooks (optional) - ๐Ÿ **VS Code** - Optimized configuration - ๐Ÿ’ป **Cross-platform** - Windows, Linux, Mac support ## Quick Start ### Windows ```cmd # Run setup script scripts\setup.bat # Or using make make setup # Or manually python3 -m venv venv venv\Scripts\activate python -m pip install -e . python -m pip install -e ".[dev]" ```