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

https://github.com/sloppycoder/mf-search


https://github.com/sloppycoder/mf-search

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Welcome to Python project

## Cookiecutter template for Python3 project

This is a [cookiecutter](https://www.cookiecutter.io/) template for generic Python3 project with preconfigured with the following tools:

* [uv](https://docs.astral.sh/uv/)
* [ruff](https://docs.astral.sh/ruff/)
* [pre-commit](https://pre-commit.com/)
* [pyright](https://github.com/microsoft/pyright)
* VS Code support

## Setup

The easiest way to get started is use [Visual Studio Code with devcontainer](https://code.visualstudio.com/docs/devcontainers/containers)

```shell

# create virtualenv and install dependencies
uv sync
source .venv/bin/activate
ruff check --fix .

```