Skip to main content

A command line app to create a Python project skeleton.

Reason this release was yanked:

BUG - error in pyproject.toml template

Project description

Python Project Generation Tool

PyPI version Codacy Badge CodeQL PyPI - License PyPI - Downloads Downloads

A fully customizable Python application to bootstrap Poetry-based boilerplate for you to start developing your Python applications quicker! Includes linting and Pytest libraries.

It will create a new directory for your project (or use the current directory), initialise a git repository, create a virtual environment, and install some basic dependencies for Testing, Linting and more.

Installation

It is best to install this package globally, rather than in a virtual environment, as it is intended to be used to create new projects.

Install the package globally using pip:

$ pip install pyproject-maker

If you cannot install globally due to permissions, you can install it to your user install directory:

$ pip install --user pyproject-maker

or use pipx (recommended)

$ pipx install pyproject-maker

Documentation

Full documentation for this project with usage examples is available at https://py-maker.seapagan.net/

Usage

To create a new project, run the following command:

$ pymaker new <project-folder>

This will create a new directory with the name you provide, and run the steps needed to get you started quickly:

  1. Copy the template files into the new directory
  2. Initialise a git repository
  3. Commit the boilerplate to Git

You will be asked a series of questions to customise the new project.

When it asks "Package Name?" you can choose two variants :

  1. If you wish for a standard Python package that can optionally be uploaded to http://pypi.org, enter a package name here. Note that underscores ("_") must be used as opposed to dashes ("-") to comply with Python package naming rules.
  2. Enter '-' to instruct the tool that you are not creating any package, just a standalone app, and then the main.py will just be placed in the project root.

You should now change into the new directory, install dependencies and activate the virtual environment:

$ cd <project-folder>
$ poetry install
$ poetry shell

Now, you can start developing :smile:

Task Runner

The task-runner Poe the Poet is installed as a development dependency which allows us to run simple tasks (similar to npm scripts).

These are run (from within the virtual environment) using the poe command and then the script name, for example:

$ poe pre

You can define your own, but there are 5 specific ones provided with the script.

  • pre : Run pre-commit run --all-files

  • pylint: Run Pylint on all Python files in the project.

  • mypy = Run MyPy type-checker on all Python files in the project.

  • flake8 = Run Flake8 linter on all Python files in the project.

  • black = Run Black code formatter on all Python files in the project.

  • try = Run Tryceratops linter on all Python files in the project.

  • lint = Runs pylint, mypy, flake8 and black in sequence

These are defined in the pyproject.toml file in the [tool.poe.tasks] section. Take a look at this file if you want to add or remove tasks.

Customise

The pyproject.toml file is set up to use the to put the code in a sub-folder with the same name as chosen for the 'Package Name'. You can change this to whatever you require, just remember to update the pyproject.toml file to match.

You can also modify the template used to generate the new project.

Check the documentation at https://py-maker.seapagan.net/ for more details.

Linting

The generated project includes flake8 (with several plugins) for linting and Black for formatting. Mypy is installed for type checking. isort,Pylint and tyrceratops are also installed as standard.

Pre-commit

The generated project uses pre-commit to run some checks on the code before it is committed. This is a great tool to help keep your code clean.

To install pre-commit, run the following command from inside your venv:

$ pre-commit install
pre-commit installed at .git/hooks/pre-commit

License

This project is licensed under the terms of the MIT license.

MIT License

Copyright (c) 2023 Grant Ramsay

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyproject_maker-0.4.3.tar.gz (55.9 kB view details)

Uploaded Source

Built Distribution

pyproject_maker-0.4.3-py3-none-any.whl (67.3 kB view details)

Uploaded Python 3

File details

Details for the file pyproject_maker-0.4.3.tar.gz.

File metadata

  • Download URL: pyproject_maker-0.4.3.tar.gz
  • Upload date:
  • Size: 55.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.4 Linux/6.2.0-26-generic

File hashes

Hashes for pyproject_maker-0.4.3.tar.gz
Algorithm Hash digest
SHA256 7ce5e873b4b4c52e31896a1e8ce25f6ca65d9176fc8c387ca1a1feacf3d6832c
MD5 7da68bba453df4f845e7d9e85025b342
BLAKE2b-256 c265c7622b7fb0fb737a992ce270d2622bd5772211088b601201d09270552068

See more details on using hashes here.

Provenance

File details

Details for the file pyproject_maker-0.4.3-py3-none-any.whl.

File metadata

  • Download URL: pyproject_maker-0.4.3-py3-none-any.whl
  • Upload date:
  • Size: 67.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.4 Linux/6.2.0-26-generic

File hashes

Hashes for pyproject_maker-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5bc6e873284c25219b22ce5ef9cb1a9f55cd32e363bd05bc0ba3f951114adb0b
MD5 f7c139927f645452a0149e0a28bc1b5f
BLAKE2b-256 8f9cba7854d74dedd979dec6f30d4688b12ce3995b3cd80a3d18e163423d1541

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page