{"id":44686386,"url":"https://github.com/bitflight-devops/pyproject-fmt","last_synced_at":"2026-03-07T21:07:38.022Z","repository":{"id":338552716,"uuid":"1153769935","full_name":"bitflight-devops/pyproject-fmt","owner":"bitflight-devops","description":"This sorts and formats the pyproject.toml file in a consistent way.","archived":false,"fork":false,"pushed_at":"2026-03-01T18:27:23.000Z","size":495,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-01T20:47:32.049Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bitflight-devops.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-09T16:46:50.000Z","updated_at":"2026-02-22T02:17:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bitflight-devops/pyproject-fmt","commit_stats":null,"previous_names":["bitflight-devops/pyproject-fmt"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/bitflight-devops/pyproject-fmt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitflight-devops%2Fpyproject-fmt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitflight-devops%2Fpyproject-fmt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitflight-devops%2Fpyproject-fmt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitflight-devops%2Fpyproject-fmt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bitflight-devops","download_url":"https://codeload.github.com/bitflight-devops/pyproject-fmt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bitflight-devops%2Fpyproject-fmt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30231492,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-15T06:07:13.935Z","updated_at":"2026-03-07T21:07:37.982Z","avatar_url":"https://github.com/bitflight-devops.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pypfmt\n\n[![CI](https://github.com/bitflight-devops/pyproject-fmt/actions/workflows/ci.yml/badge.svg)](https://github.com/bitflight-devops/pyproject-fmt/actions/workflows/ci.yml)\n[![PyPI version](https://badge.fury.io/py/pypfmt.svg)](https://badge.fury.io/py/pypfmt)\n[![codecov](https://codecov.io/gh/bitflight-devops/pyproject-fmt/branch/main/graph/badge.svg)](https://codecov.io/gh/bitflight-devops/pyproject-fmt)\n[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)\n[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![ty](https://img.shields.io/badge/type--checked-ty-blue?labelColor=orange)](https://github.com/astral-sh/ty)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/bitflight-devops/pyproject-fmt/blob/main/LICENSE)\n\nA Python package to sort and format pyproject.toml\n\n## Features\n\n- Fast and modern Python toolchain using Astral's tools (uv, ruff, ty)\n- Type-safe with full type annotations\n- Command-line interface built with Typer\n- Comprehensive documentation with MkDocs — [View Docs](https://bitflight-devops.github.io/pyproject-fmt/)\n\n## Installation\n\n```bash\npip install pypfmt\n```\n\nOr using uv (recommended):\n\n```bash\nuv add pypfmt\n```\n\n## Quick Start\n\n```python\nimport pypfmt\n\nprint(pypfmt.__version__)\n```\n\n### CLI Usage\n\n```bash\n# Show version\npypfmt --version\n\n# Say hello\npypfmt hello World\n```\n\n## Development\n\n### Prerequisites\n\n- Python 3.11+\n- [uv](https://docs.astral.sh/uv/) for package management\n\n### Setup\n\n```bash\ngit clone https://github.com/bitflight-devops/pyproject-fmt.git\ncd pyproject-fmt\nuv sync --all-groups\n```\n\n### Running Tests\n\n```bash\nuv run poe test\n\n# With coverage\nuv run poe test-cov\n\n# Across all Python versions\nuv run poe test-matrix\n```\n\n### Code Quality\n\n```bash\n# Run all checks (lint, format, type-check)\nuv run poe verify\n\n# Auto-fix lint and format issues\nuv run poe fix\n```\n\n### Prek\n\n```bash\nprek install\nprek run --all-files\n```\n\n### Documentation\n\n```bash\nuv run poe docs-serve\n```\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitflight-devops%2Fpyproject-fmt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbitflight-devops%2Fpyproject-fmt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbitflight-devops%2Fpyproject-fmt/lists"}