Skip to content

Commit 92434f2

Browse files
authored
chore: Fix pyproject.toml format (#243)
1 parent f31112a commit 92434f2

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,14 @@ repos:
2727
- -b main
2828
- id: trailing-whitespace
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
# Ruff version.
3130
rev: v0.8.6
3231
hooks:
3332
- id: ruff
3433
args: [--fix, --exit-non-zero-on-fix]
34+
- repo: https://github.com/abravalheri/validate-pyproject
35+
rev: v0.23
36+
hooks:
37+
- id: validate-pyproject
3538
- repo: https://github.com/adrienverge/yamllint.git
3639
rev: v1.35.1
3740
hooks:

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,17 @@ authors = [
88
]
99
description = "Python interface to the Sectigo Certificate Manager REST API"
1010
dynamic = [ "dependencies" ]
11-
homepage = "https://github.com/broadinstitute/python-cert_manager.git"
1211
keywords = ["sectigo", "comodo", "certificate"]
13-
license = "BSD-3-Clause"
12+
license = { text = "BSD-3-Clause" }
1413
name = "cert_manager"
1514
readme = "README.md"
16-
repository = "https://github.com/broadinstitute/python-cert_manager.git"
1715
requires-python = ">=3.9,<4.0.0"
1816
version = "2.4.0"
1917

18+
[project.urls]
19+
homepage = "https://github.com/broadinstitute/python-cert_manager.git"
20+
repository = "https://github.com/broadinstitute/python-cert_manager.git"
21+
2022
[tool.poetry.dependencies]
2123
requests = "^2.32.3"
2224
toml = "^0.10.2"

0 commit comments

Comments
 (0)