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

https://github.com/markdouthwaite/minimal-python-project


https://github.com/markdouthwaite/minimal-python-project

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# minimal-python-project

This is a template project with some basic clean code automation built-in.
You could use this project as anything you want, from a package to a microservice to a
data pipeline. Your imagination is the limit :unicorn:.

## Getting started

### Running source

To run the source code, simply run:

```bash
python src/main.py
```

You should see:

```text
Hello, world!
```

Add your code to this directory.

### Running tests

```bash
make install-dev
```

```bash
make test
```

### Running checks

```bash
make install-dev
```

```bash
make check
```