summaryrefslogtreecommitdiff
path: root/example_isort_formatting_plugin/pyproject.toml
blob: 31e3f92828b86cca396d6c19a5db35e52c3e5121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.poetry]
name = "example_isort_formatting_plugin"
version = "0.0.2"
description = "An example plugin that modifies isort formatting using black."
authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
license = "MIT"

[tool.poetry.plugins."isort.formatters"]
example = "example_isort_formatting_plugin:black_format_import_section"

[tool.poetry.dependencies]
python = "^3.6"
isort = "^5.1.4"
black = "^20.08b1"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"