An open API service indexing awesome lists of open source software.

https://github.com/ewpratten/aiobuild

My All-In-One Python build setup
https://github.com/ewpratten/aiobuild

build-script python3 style-checker unit-tests

Last synced: 11 months ago
JSON representation

My All-In-One Python build setup

Awesome Lists containing this project

README

          

# aiobuild
My All-In-One Python build setup

## What is this?

This project contains a self-contained `setup.py` file that can be dropped into any Python3 project. It provides the following commands

```sh
# Lint code (and auto-fix)
python3 setup.py lint

# Test code
python3 setup.py test

# Run a full project check
python3 setup.py check
```

The checksyle rules (although configurable) are very strict to force you to write very good, clean code.

## Installation

Just copy this project's `setup.py` file into your project, and set your own metadata at the top of the file