Command-line tool designed to take the friction out of starting a new Python project
Project description
Project Structure
pylaunch/ ├── src/ │ └── pylaunch/ │ ├── init.py │ ├── main.py # The CLI entry point (Typer/Click logic) │ ├── wizard.py # The questions (Questionary logic) │ ├── generator.py # The logic that creates folders and files │ ├── utils.py # Helper functions (git init, venv creation) │ └── templates/ # Folder containing your blueprints │ ├── base/ # Files every project gets (.gitignore, README) │ │ ├── README.md.j2 │ │ └── gitignore.txt │ ├── fastapi/ # Specific to API projects │ │ ├── main.py.j2 │ │ └── requirements.txt.j2 │ └── cli/ # Specific to CLI projects │ └── cli_main.py.j2 ├── tests/ # Essential! You're dealing with File I/O │ ├── init.py │ └── test_generator.py ├── pyproject.toml # Defines your package and dependencies ├── README.md └── .gitignore
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pykickoff-0.1.0.tar.gz.
File metadata
- Download URL: pykickoff-0.1.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53938c775ccb6b5e6efeca22850af1055a820d3f1e25e3c2ffd4777cb471e9c0
|
|
| MD5 |
b5de0d2b25bec9150e4b7cff09a3ece4
|
|
| BLAKE2b-256 |
082c20de5534cf6f96f48e2bfd003c5072f17d93ab545acb7c1f972568372304
|
File details
Details for the file pykickoff-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pykickoff-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6785aa229a3ef1cd519d89080710a3b8f219c8ef94b60c1776d577b03f5befc
|
|
| MD5 |
e9511ae6bce19530d7955d799a500d32
|
|
| BLAKE2b-256 |
109e59a2089363b9b4d0955f86780729c21f4d14a9598a401acb8b1b137ac8dc
|