Skip to main content

Formatter for pyproject.toml files

Project description

pyprojectsort

PyPI Version LICENSE Python versions Supported platforms Ruff Code style: black Imports: isort Pipeline status pre-commit.ci status

Formatter for pyproject.toml files.

This package enforces consistent formatting of pyproject.toml files, reducing merge request conflicts and saving time otherwise spent on manual formatting. It also contributes to a cleaner git history and more readable code; enhancing overall project organisation and maintainability. Experience a streamlined workflow, reduced errors, and improved code readability with pyprojectsort.

Features

  • Alphanumerically sorts pyproject.toml by:
    • section
    • section key
    • list value
  • Reformats pyproject.toml to a standardised style
    • line per list value
    • double quotations
    • trailing commas
    • indentation
    • end of file newline

Installation

pyprojectsort is available via PyPI:

pip install pyprojectsort

Using pyprojectsort with pre-commit

To use as an automated git hook, add this to your .pre-commit-config.yaml:

- repo: https://github.com/kieran-ryan/pyprojectsort
  rev: v0.3.0
  hooks:
    - id: pyprojectsort

Examples

With the following pyproject.toml:

[tool.ruff]
ignore = ["G004",
"T201",
    "ANN"
]

[project]
name = 'pyprojectsort'
authors = [
    { name = "Kieran Ryan" },
    "Author Name <author@email.com>",
    {name="Author Name"}
]

[tool.radon]
show_mi = true
exclude = "tests/*,venv/*"
total_average = true
show_complexity = true

[build-system]
build-backend = "flit.buildapi"
requires = ["flit"]

Run the package from within its directory:

pyprojectsort

The configuration will be reformatted as follows:

[build-system]
build-backend = "flit.buildapi"
requires = [
    "flit",
]

[project]
authors = [
    "Author Name <author@email.com>",
    { name = "Author Name" },
    { name = "Kieran Ryan" },
]
name = "pyprojectsort"

[tool.radon]
exclude = "tests/*,venv/*"
show_complexity = true
show_mi = true
total_average = true

[tool.ruff]
ignore = [
    "ANN",
    "G004",
    "T201",
]

The pyproject file path can alternatively be specified:

pyprojectsort ../pyproject.toml

Check formatting

The --check option can be used to determine whether your file would be reformatted.

pyprojectsort --check

If the file needs reformatting, the program exits with an error code. This is useful for pipeline integration as it prevents writing back changes so that a clean repository is maintained for subsequent jobs.

The --diff option provides similar functionality but also displays any changes that would be made.

pyprojectsort --diff

The diff of an alphabetically reordered array will appear as follows:

@@ -6,8 +6,8 @@
[project]
authors = [
+ { name = "Author Name" },
  { name = "Kieran Ryan" },
- { name = "Author Name" },
]

License

pyprojectsort is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyprojectsort-0.4.0.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyprojectsort-0.4.0-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file pyprojectsort-0.4.0.tar.gz.

File metadata

  • Download URL: pyprojectsort-0.4.0.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pyprojectsort-0.4.0.tar.gz
Algorithm Hash digest
SHA256 c6a3a4efd86c085eb182fa125dce9ace6b817ad77bb2afbfbc31e52ce26cfa32
MD5 76fe0cf7901414ddf0050d8a2b73dcd7
BLAKE2b-256 fab584ce6207d1b66c07987ff65b5a88a523f58fee5508bbc5e92fff67c625cd

See more details on using hashes here.

File details

Details for the file pyprojectsort-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: pyprojectsort-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pyprojectsort-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6209ac47e67cd1131d8ffbb711349d26a7e2d38429910fc5a7b1c998f7b13cee
MD5 a881603430bb2b39336a627b35fd7b3d
BLAKE2b-256 033429edefa451aadb2fefb302519260668e5253f65d356cb8d5ed96d830f78c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page