/eq-devtools

A CLI app to facilitate common development tasks

Primary LanguagePythonMIT LicenseMIT

contributor-covenant github-license conda-package


A CLI App to Facilitate Common Development Tasks

Development

Building

This project uses boa for building:

devtool conda render --version 0.1.0
boa build --pkg-format 2 --output-folder='./.build/dist' './.build/conda'

Linting

The project is configured to use black, isort and ruff for linting. These tools may be manually run as below:

black --preview ./src
isort ./src
ruff check ./src