https://github.com/sloppycoder/mf-search
https://github.com/sloppycoder/mf-search
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/sloppycoder/mf-search
- Owner: sloppycoder
- Created: 2025-02-26T03:38:21.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2025-03-07T02:59:43.000Z (about 1 year ago)
- Last Synced: 2025-03-07T03:28:48.960Z (about 1 year ago)
- Language: Python
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 .
```