A minimal, production-ready template for building Python libraries with modern development practices.
# Clone and customize
git clone https://github.com/mirasurf/pytemplate.git my-library
cd my-library
# Install development dependencies
pip install -e ".[dev]"
# Run tests
make test├── pytemplate/ # Main package
├── tests/ # Test suite
├── docs/ # Documentation
├── docker-compose.yml # Development environment
├── pyproject.toml # Project configuration
└── Makefile # Development commands
MIT License - see LICENSE file for details.