File: pyproject.toml

package info (click to toggle)
isort 7.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,548 kB
  • sloc: python: 15,337; javascript: 42; makefile: 28; sh: 22
file content (17 lines) | stat: -rw-r--r-- 596 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[project]
name = "example_isort_sorting_plugin"
version = "0.1.0"
description = "An example plugin that modifies isorts sorting order to provide an even more natural sort by utilizing natsort."
authors = [{name = "Timothy Crosley", email = "timothy.crosley@gmail.com"}, {name = "staticdev", email = "staticdev-support@proton.me"}]
license = "MIT"
requires-python = ">=3.10.0"
dependencies = [
    "natsort>=7.1.1"
]

[project.entry-points."isort.sort_function"]
natural_plus = "example_isort_sorting_plugin:natural_plus"

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