Skip to content
This repository has been archived by the owner on Jan 11, 2025. It is now read-only.

hedgehoglet/cat-food

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🦔🐈 (cat-food)

Cat food is available to almost everyone, no matter where they live, and contains a high amount of protein which is what a hedgehog needs.

Getting Started

pip install cookiecutter
  • Open your bag with cookiecutter
cookiecutter https://github.com/hedgehoglet/cat-food.git

Cat Food Package Design

🦔
├── .flake8                         # configuration for flake8 - a Python formatter tool
├── .gitignore                      # ignore files that we don't want to commit to Git
├── .pre-commit-config.yaml         # configurations for pre-commit
├── .pylintrc                       # configurations for pylint - a Python static code analyzer
├── LICENSE                         # license of your project
├── Makefile                        # store useful commands to set up the environment
├── README.md                       # describe your project
├── pyproject.toml                  # dependencies for poetry
├── {{cookiecutter.__repository_name}}/
│        ├── __init__.py                     # make {{cookiecutter.__repository_name}} a Python module
│        ├── src/                            # store source code
│        │   └── __init__.py                 # make src a Python module
│        └── tests/                          # store tests
│            └── __init__.py                 # make tests a Python module
└── notebooks/                               # store ipynb files
         └── playground.ipynb                # pre-defined jupyter notebook playground

How Is Cat Food Made?