/pipenv-skeleton

Primary LanguagePythonMIT LicenseMIT

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