lucasrcezimbra / cookiecutter-pypackage

Cookiecutter template for a Python package.
BSD 3-Clause "New" or "Revised" License
1 stars 1 forks source link
hacktoberfest

Cookiecutter PyPackage

An opinionated Cookiecutter to create a new Python package.

├── CHANGELOG.md
├── docs
│   ├── changelog.md
│   ├── conf.py
│   ├── index.rst
│   ├── make.bat
│   ├── Makefile
│   └── readme.md
├── .github
│   ├── dependabot.yml
│   └── workflows
│       ├── python-app.yml
│       └── python-publish.yml
├── .gitignore
├── LICENSE
├── poetry.lock
├── .pre-commit-config.yaml
├── pyproject.toml
├── python_boilerplate
│   ├── __init__.py
│   └── python_boilerplate.py
├── README.md
├── .readthedocs.yaml
├── setup.cfg
└── tests
    ├── __init__.py
    └── test_python_boilerplate.py

How to Use

pipx install cookiecutter
cookiecutter https://github.com/lucasrcezimbra/cookiecutter-pypackage