| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
My personal template for Python projects.
Create a project directly:
sprout new "https://github.com/zigai/python-project-template.git" /path/to/your/projectOr add the template for reuse:
sprout add zigai/python-project-template --name python
sprout new python /path/to/your/projectyour-project/
├── your_package/
│ ├── __init__.py
│ └── py.typed
├── .github/workflows/ # optional selected workflows
├── .python-version # default local Python version
├── .python-versions # local test matrix Python versions
├── .editorconfig
├── .pre-commit-config.yaml
├── pyproject.toml
├── README.md
├── CONTRIBUTING.md
├── docs/ # optional Read the Docs site
├── .readthedocs.yaml # optional Read the Docs config
├── Justfile
├── LICENSE # omitted when no license is selected
└── .gitignore
| Back | FazBrowse Home | New Git URL |