Pypjt - Python Project Template¶
Installation¶
To install pypjt, use pip:
$ python -m pip install pypjt
Quickstart¶
To get started, simply run:
$ pypjt
If running it as a script doesn’t work, you can run it as a module instead:
$ python -m pypjt
It’s safe to run—it will not overwrite any existing directories.
Once launched, you’ll be prompted to answer a few questions about the project you want to create.
The project name is the most important and required field.
You can leave the other fields empty or accept their default values.
All of these settings can be changed later in pyproject.toml or other configuration files.
After you’ve completed the prompts, your project will be generated and saved under the current working directory.
Great! You can now start coding within the newly created folder, or further customize the structure to fit your needs.
Next Step¶
Check out the Usage section for more detailed instructions on how to work with your project.