mbpy - Manage Python Projects with Ease

PyPI - Version PyPI - Python Version


mbpy is a powerful tool for creating, managing, and documenting Python projects. It simplifies the process of setting up project structures, managing dependencies, and generating documentation.

Features

Table of Contents

Installation

pip install mbpy

Usage

To create a new project:

mbpip create <project_name> --author "<Your Name>" --description "<Project Description>"

To manage dependencies:

mpip install <package_name>
mpip uninstall <package_name>
mpip show

For more detailed usage instructions, run:

mbpy --help

or

mpip --help

Documentation

To view the full documentation, you have two options:

Sphinx

  1. Build the docs:

    hatch run docs
    
  2. Open docs/_build/html/index.html in your web browser.

MkDocs

  1. Install MkDocs if you haven't already:

    pip install mkdocs
    
  2. Build and serve the docs:

    mkdocs serve
    
  3. Open your web browser and go to http://127.0.0.1:8000/

License

mbpy is distributed under the terms of the MIT License.