Metadata-Version: 2.1
Name: dev-dependencies
Version: 0.1.1
Summary: An opinionated library of dev-time dependencies
Author: Justin Mills
License: MIT
Keywords: library,dependencies
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE

# Dev Dependencies

Opinionated development dependencies for python projects.

Install this as your only dev dependency to pick up a bunch of common dev-time libraries you may need for things like linting, type checking and tests.

## Installation

    # Using pipenv:
    pipenv install -d dev-dependencies

## What you get

* Linting

      ruff check .
      black --check .
      # There is also flake8, but ruff is just nicer
      flake8

* Type checking

      mypy devdeps tests

* Tests

      pytest

## Building a package to release

    python -m build

    # To release that package
    twine upload dist/dev-dependencies-*.tar.gz dist/dev_dependencies-*-py3-none-any.whl

