[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.8, 3.9, 3.10, 3.11, 3.12 and PyPy 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.8",
"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/c6/77/d4c92ded2515b70f8fc1410b04b30b16f6baeb70cecdd3f7bc07a6bcac5d/pybuilder-0.13.13.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.8, 3.9, 3.10, 3.11, 3.12 and PyPy 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.13",
"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": "75baa80e17cbe5b8f658bfb8831563d3647f0903bf3a641bbe89ea62525ed0a0",
"md5": "c853b12d43a51bc9dce5e433ef51fa30",
"sha256": "f0b1436402bc14874e50b55eaa3225f5d42eafe7272a01f097ecc83d7d66c921"
},
"downloads": -1,
"filename": "pybuilder-0.13.13-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c853b12d43a51bc9dce5e433ef51fa30",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 5579697,
"upload_time": "2024-06-04T08:43:52",
"upload_time_iso_8601": "2024-06-04T08:43:52.318194Z",
"url": "https://files.pythonhosted.org/packages/75/ba/a80e17cbe5b8f658bfb8831563d3647f0903bf3a641bbe89ea62525ed0a0/pybuilder-0.13.13-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c677d4c92ded2515b70f8fc1410b04b30b16f6baeb70cecdd3f7bc07a6bcac5d",
"md5": "2b4b8f0a5902bb95d2c2436d8c404b97",
"sha256": "7e10fe8a39ab4854080bc6c702c70b3db8241fde577e12a7059a3696373d39be"
},
"downloads": -1,
"filename": "pybuilder-0.13.13.tar.gz",
"has_sig": false,
"md5_digest": "2b4b8f0a5902bb95d2c2436d8c404b97",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 5344651,
"upload_time": "2024-06-04T08:43:55",
"upload_time_iso_8601": "2024-06-04T08:43:55.606386Z",
"url": "https://files.pythonhosted.org/packages/c6/77/d4c92ded2515b70f8fc1410b04b30b16f6baeb70cecdd3f7bc07a6bcac5d/pybuilder-0.13.13.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-04 08:43:55",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pybuilder",
"github_project": "pybuilder",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pybuilder"
}