A build tool for multi-projects that leverages package registries (pypi, npmjs, etc.)
Project description
PBT
Introduction
Having all packages in the same repository make it much easier to develop, share, reuse, and refactor code. Building and publishing the packages should not be done manually because it is time-consuming and may be frustrated if the projects are depending on each other. pbt is a tool designed to help make the process easier and faster. It supports building, installing, and updating versions of your packages and their dependencies consistently. It also provides utility commands to help you work with your packages in multi-repositories as if you are working with a monorepo.
Installation
pip install -U pab # not pbt
Usage
Note: currently, pbt supports Python packages configured with Poetry (an awesome dependency management that you should consider using).
Assuming that you organized your packages to different sub-folders, each has their own project configuration file (e.g., pyproject.toml
). You can run the following commands in the root directory (containing your projects). Note: pbt will discover the project based on the project name in its configuration file not the folder name.
You can also discover the list of commands by running pbt --help
. Many commands have an option --cwd
to override the current working directory.
- List all packages in the current project, and their dependencies if required
pbt list [-d]
-d
,--dev
: Whether to print to the local (inter-) dependencies
- Create virtual environment of a package and install its dependencies
pbt install [-d] [-v] [-p <package>]
-d
: also install dev-dependencies of the package-v
: verbose-p
: specify the package we want to build, if empty build all packages.
If you have encounter some errors during the installation, you can checkout the pyproject.failed.toml
file that is generated by pbt in ./cache/<package>
folder (relative to your current working directory). For example, on M1 chip, if your python version is ^3.8
, you can't use the newer scipy (e.g., >1.8 as it requires python <3.11
), poetry lock chooses to use an old version 1.6.0
, which typically can't build on M1 due to no pre-built numpy for it.
- Update all package inter-dependencies
pbt update
- Clean packages' build & lock files
pbt clean [-p <package>]
-p
: specify the package we want to build, if empty build all packages.
- Git clone a multi-repository project
pbt git clone --repo <repo_url>
Clone a repository and check out all of its submodules to their correct branches that we were using last time.
- Git update a multi-repository project
pbt git update
Pull latest changes from the repository, and check out all of its submodules to their correct branches.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pab-2.9.1.tar.gz
.
File metadata
- Download URL: pab-2.9.1.tar.gz
- Upload date:
- Size: 31.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2909853434fddc76f8415a936de06c25abd3ffbb146e87e0c7136da581896659 |
|
MD5 | f13fd564e7f52f0706b665fbca581881 |
|
BLAKE2b-256 | 2fd5ade330950f3f6d21c0b81d58828d07bc2c5b98b8df585eaef327f404b831 |
File details
Details for the file pab-2.9.1-py3-none-any.whl
.
File metadata
- Download URL: pab-2.9.1-py3-none-any.whl
- Upload date:
- Size: 39.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12204e91bbb2e521a6e36ca164efaad288bf68dd3e97cb705ba8745f78260dfb |
|
MD5 | 589cb99df124028f263cf380940302ef |
|
BLAKE2b-256 | 4ec7a808a01affcf0cc9d262ea18d06a262a6ab514d52b3ca7545147b03cfe99 |