Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r0x0d/cookiecutter-python-projects
My personal cookiecutter repository template packed with everything I need when creating a new project.
https://github.com/r0x0d/cookiecutter-python-projects
cookiecutter python template
Last synced: about 2 months ago
JSON representation
My personal cookiecutter repository template packed with everything I need when creating a new project.
- Host: GitHub
- URL: https://github.com/r0x0d/cookiecutter-python-projects
- Owner: r0x0d
- Created: 2022-03-10T15:51:53.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-18T01:21:15.000Z (12 months ago)
- Last Synced: 2024-01-18T16:30:42.115Z (12 months ago)
- Topics: cookiecutter, python, template
- Language: Python
- Homepage:
- Size: 181 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Tests](https://github.com/r0x0d/cookiecutter-python-projects/actions/workflows/tests.yml/badge.svg)](https://github.com/r0x0d/cookiecutter-python-projects/actions/workflows/tests.yml)
# Cookiecutter Python Projects
My personal cookiecutter repository template packed with everything I need when creating a new project.
## How to use this template
It's pretty simple and straight-forward to use this template, first you need to install `cookiecutter` and `git` in your machine.
```bash
pip install cookiecutter# If you are in any debian-like distros, run:
apt install git# If you are in fedora-like distros, run:
dnf install git
```Then, after those dependencies are installed, simply run the following command:
```bash
# If you are using git with SSH
cookiecutter [email protected]:r0x0d/cookiecutter-python-projects# If you are using git with HTTPS
cookiecutter https://github.com/r0x0d/cookiecutter-python-projects
```That's it! Answer the questions that will show in your terminal and you're done!