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"
|