pybuilder


Namepybuilder JSON
Version 0.13.10 PyPI version JSON
download
home_pagehttps://pybuilder.io
SummaryPyBuilder — an easy-to-use build automation tool for Python.
upload_time2023-07-10 03:11:04
maintainerArcadiy Ivanov
docs_urlhttps://pythonhosted.org/pybuilder/
authorArcadiy Ivanov, Alexander Metzner, Maximilien Riehl, Michael Gruber, Udo Juettner, Marcel Wolf, Valentin Haenel
requires_python>=3.7
licenseApache License, Version 2.0
keywords pybuilder pyb build tool automation python testing qa packaging distribution
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [PyBuilder — an easy-to-use build automation tool for Python](https://pybuilder.io)
=========

[![Follow PyBuilder on Twitter](https://img.shields.io/twitter/follow/pybuilder_?label=Follow%20PyBuilder&style=social)](https://twitter.com/intent/follow?screen_name=pybuilder_)
[![Gitter](https://img.shields.io/gitter/room/pybuilder/pybuilder?logo=gitter)](https://app.gitter.im/#/room/#pybuilder_pybuilder:gitter.im)
[![Build Status](https://img.shields.io/github/actions/workflow/status/pybuilder/pybuilder/pybuilder.yml?branch=master)](https://github.com/pybuilder/pybuilder/actions/workflows/pybuilder.yml)
[![Coverage Status](https://img.shields.io/coveralls/github/pybuilder/pybuilder/master?logo=coveralls)](https://coveralls.io/r/pybuilder/pybuilder?branch=master)

[![PyBuilder Version](https://img.shields.io/pypi/v/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)
[![PyBuilder Python Versions](https://img.shields.io/pypi/pyversions/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)
[![PyBuilder Downloads Per Day](https://img.shields.io/pypi/dd/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)
[![PyBuilder Downloads Per Week](https://img.shields.io/pypi/dw/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)
[![PyBuilder Downloads Per Month](https://img.shields.io/pypi/dm/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)

PyBuilder is a software build tool written in 100% pure Python, mainly
targeting Python applications.

PyBuilder is based on the concept of dependency based programming, but it also
comes with a powerful plugin mechanism, allowing the construction of build life
cycles similar to those known from other famous (Java) build tools.

PyBuilder is running on the following versions of Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and PyPy 3.7, 3.8 and 3.9.

See the [GitHub Actions Workflow](https://github.com/pybuilder/pybuilder/actions/workflows/pybuilder.yml) for version specific output.

## Installing

PyBuilder is available using pip:

    $ pip install pybuilder

For development builds use:

    $ pip install --pre pybuilder

See the [PyPI](https://pypi.org/project/pybuilder/) for more information.

## Getting started

PyBuilder emphasizes simplicity. If you want to build a pure Python project and
use the recommended directory layout, all you have to do is create a file
build.py with the following content:

```python
from pybuilder.core import use_plugin

use_plugin("python.core")
use_plugin("python.unittest")
use_plugin("python.coverage")
use_plugin("python.distutils")

default_task = "publish"
```

See the [PyBuilder homepage](https://pybuilder.io) for more details and
a list of plugins.

## Release Notes

The release notes can be found [here](https://pybuilder.io/release-notes/).
There will also be a git tag with each release. Please note that we do not currently promote tags to GitHub "releases".

## Development
See [Developing PyBuilder](https://pybuilder.io/documentation/developing-pybuilder)

            

Raw data

            {
    "_id": null,
    "home_page": "https://pybuilder.io",
    "name": "pybuilder",
    "maintainer": "Arcadiy Ivanov",
    "docs_url": "https://pythonhosted.org/pybuilder/",
    "requires_python": ">=3.7",
    "maintainer_email": "arcadiy@ivanov.biz",
    "keywords": "PyBuilder PyB build tool automation Python testing QA packaging distribution",
    "author": "Arcadiy Ivanov, Alexander Metzner, Maximilien Riehl, Michael Gruber, Udo Juettner, Marcel Wolf, Valentin Haenel",
    "author_email": "arcadiy@ivanov.biz, alexander.metzner@gmail.com, max@riehl.io, aelgru@gmail.com, udo.juettner@gmail.com, marcel.wolf@me.com, valentin@haenel.co",
    "download_url": "https://files.pythonhosted.org/packages/4c/b3/759e5eb341e992bca5364797910f3049abf8d1af7d7507491e89e8f6a7bf/pybuilder-0.13.10.tar.gz",
    "platform": null,
    "description": "[PyBuilder — an easy-to-use build automation tool for Python](https://pybuilder.io)\n=========\n\n[![Follow PyBuilder on Twitter](https://img.shields.io/twitter/follow/pybuilder_?label=Follow%20PyBuilder&style=social)](https://twitter.com/intent/follow?screen_name=pybuilder_)\n[![Gitter](https://img.shields.io/gitter/room/pybuilder/pybuilder?logo=gitter)](https://app.gitter.im/#/room/#pybuilder_pybuilder:gitter.im)\n[![Build Status](https://img.shields.io/github/actions/workflow/status/pybuilder/pybuilder/pybuilder.yml?branch=master)](https://github.com/pybuilder/pybuilder/actions/workflows/pybuilder.yml)\n[![Coverage Status](https://img.shields.io/coveralls/github/pybuilder/pybuilder/master?logo=coveralls)](https://coveralls.io/r/pybuilder/pybuilder?branch=master)\n\n[![PyBuilder Version](https://img.shields.io/pypi/v/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)\n[![PyBuilder Python Versions](https://img.shields.io/pypi/pyversions/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)\n[![PyBuilder Downloads Per Day](https://img.shields.io/pypi/dd/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)\n[![PyBuilder Downloads Per Week](https://img.shields.io/pypi/dw/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)\n[![PyBuilder Downloads Per Month](https://img.shields.io/pypi/dm/pybuilder?logo=pypi)](https://pypi.org/project/pybuilder/)\n\nPyBuilder is a software build tool written in 100% pure Python, mainly\ntargeting Python applications.\n\nPyBuilder is based on the concept of dependency based programming, but it also\ncomes with a powerful plugin mechanism, allowing the construction of build life\ncycles similar to those known from other famous (Java) build tools.\n\nPyBuilder is running on the following versions of Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and PyPy 3.7, 3.8 and 3.9.\n\nSee the [GitHub Actions Workflow](https://github.com/pybuilder/pybuilder/actions/workflows/pybuilder.yml) for version specific output.\n\n## Installing\n\nPyBuilder is available using pip:\n\n    $ pip install pybuilder\n\nFor development builds use:\n\n    $ pip install --pre pybuilder\n\nSee the [PyPI](https://pypi.org/project/pybuilder/) for more information.\n\n## Getting started\n\nPyBuilder emphasizes simplicity. If you want to build a pure Python project and\nuse the recommended directory layout, all you have to do is create a file\nbuild.py with the following content:\n\n```python\nfrom pybuilder.core import use_plugin\n\nuse_plugin(\"python.core\")\nuse_plugin(\"python.unittest\")\nuse_plugin(\"python.coverage\")\nuse_plugin(\"python.distutils\")\n\ndefault_task = \"publish\"\n```\n\nSee the [PyBuilder homepage](https://pybuilder.io) for more details and\na list of plugins.\n\n## Release Notes\n\nThe release notes can be found [here](https://pybuilder.io/release-notes/).\nThere will also be a git tag with each release. Please note that we do not currently promote tags to GitHub \"releases\".\n\n## Development\nSee [Developing PyBuilder](https://pybuilder.io/documentation/developing-pybuilder)\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "PyBuilder \u2014 an easy-to-use build automation tool for Python.",
    "version": "0.13.10",
    "project_urls": {
        "Bug Tracker": "https://github.com/pybuilder/pybuilder/issues",
        "Documentation": "https://pybuilder.io/documentation",
        "Homepage": "https://pybuilder.io",
        "Source Code": "https://github.com/pybuilder/pybuilder",
        "Twitter": "https://twitter.com/pybuilder_"
    },
    "split_keywords": [
        "pybuilder",
        "pyb",
        "build",
        "tool",
        "automation",
        "python",
        "testing",
        "qa",
        "packaging",
        "distribution"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e91450c8a88b5935c86c6a74343d5a6929b9e014c81b2fc327c59e4c25e8eb3",
                "md5": "96660cc423ece2337a9148f27b4b5db7",
                "sha256": "41a5eb143eddc7fbec95fbb5e8d29e109008513580cfd15fd7332ff816dc2a8b"
            },
            "downloads": -1,
            "filename": "pybuilder-0.13.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "96660cc423ece2337a9148f27b4b5db7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 4693589,
            "upload_time": "2023-07-10T03:11:00",
            "upload_time_iso_8601": "2023-07-10T03:11:00.447013Z",
            "url": "https://files.pythonhosted.org/packages/7e/91/450c8a88b5935c86c6a74343d5a6929b9e014c81b2fc327c59e4c25e8eb3/pybuilder-0.13.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cb3759e5eb341e992bca5364797910f3049abf8d1af7d7507491e89e8f6a7bf",
                "md5": "ca58bb0c7f3cfcb256bc5e6a535f7a30",
                "sha256": "b4afa8ff8dd84c536511a83be30b781ea67157d0473c816675813829a670b85a"
            },
            "downloads": -1,
            "filename": "pybuilder-0.13.10.tar.gz",
            "has_sig": false,
            "md5_digest": "ca58bb0c7f3cfcb256bc5e6a535f7a30",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 4478701,
            "upload_time": "2023-07-10T03:11:04",
            "upload_time_iso_8601": "2023-07-10T03:11:04.043203Z",
            "url": "https://files.pythonhosted.org/packages/4c/b3/759e5eb341e992bca5364797910f3049abf8d1af7d7507491e89e8f6a7bf/pybuilder-0.13.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-10 03:11:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pybuilder",
    "github_project": "pybuilder",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pybuilder"
}
        
Elapsed time: 0.08595s