Skip to content
This repository has been archived by the owner on Jul 2, 2022. It is now read-only.

Latest commit

 

History

History
40 lines (29 loc) · 924 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 924 Bytes

Pipenv simple skeleton

A simple skeleton of pipenv project.

This project includes some dev settings below.

  • Python 3.7
  • autopep8
  • Pylint
  • YAPF
    • Google style format
  • mypy

Usage

Clone or copy this project.

Commands

# Install dev dependencies.
pipenv install --dev

# Static type check wiht mypy strict mode.
pipenv run type

# Lint module wih pylint.
pipenv run lint

Links