Development
This section outlines the steps for contributing to or building the pyETA-toolbox from source.
Clone the Repository
To begin development, clone the repository from GitHub:
git clone https://github.com/VinayIN/pyETA-toolbox.git
cd pyETA-toolboxChange the branch from main to another branch-xyz
Changing the Version in pyproject.toml
pyproject.tomlTo update the package version:
Open the
pyproject.tomlfile in the project root and change the version:
name = "pyeta-toolbox"
version = "<new-version>" # e.g., "0.0.9dev"Install the
pyETApackage as editable
pip install -e .make your changes and test the application. Steps are the same as launching the application
Creating a Package with Poetry
To build a distributable package:
Install Poetry if not already installed:
pip install poetryBuild the package:
poetry buildThis generates
.whland.tar.gzfiles in thedist/directory.
Reporting Issues
If you encounter problems, report them on the issue tracker: https://github.com/VinayIN/pyETA-toolbox/issues and include any errors and logs in your report.
Last updated