File: pyproject.toml

package info (click to toggle)
isort 8.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,404 kB
  • sloc: python: 14,884; javascript: 42; makefile: 28; sh: 21
file content (18 lines) | stat: -rw-r--r-- 580 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[project]
name = "example_isort_formatting_plugin"
version = "0.1.1"
description = "An example plugin that modifies isort formatting using black."
authors = [{name = "Timothy Crosley", email = "timothy.crosley@gmail.com"}, {name = "staticdev", email = "staticdev-support@proton.me"}]
license = "MIT"
requires-python = ">=3.10.0"
dependencies = [
    "isort>=5.13.2",
    "black>=24.3.0",
]

[project.entry-points."isort.formatters"]
example = "example_isort_formatting_plugin:black_format_import_section"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"