Skip to content

Commit

Permalink
chore: Fix pyproject.toml format (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
coreone authored Jan 7, 2025
1 parent f31112a commit 92434f2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,14 @@ repos:
- -b main
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.8.6
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.23
hooks:
- id: validate-pyproject
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ authors = [
]
description = "Python interface to the Sectigo Certificate Manager REST API"
dynamic = [ "dependencies" ]
homepage = "https://github.com/broadinstitute/python-cert_manager.git"
keywords = ["sectigo", "comodo", "certificate"]
license = "BSD-3-Clause"
license = { text = "BSD-3-Clause" }
name = "cert_manager"
readme = "README.md"
repository = "https://github.com/broadinstitute/python-cert_manager.git"
requires-python = ">=3.9,<4.0.0"
version = "2.4.0"

[project.urls]
homepage = "https://github.com/broadinstitute/python-cert_manager.git"
repository = "https://github.com/broadinstitute/python-cert_manager.git"

[tool.poetry.dependencies]
requests = "^2.32.3"
toml = "^0.10.2"
Expand Down

0 comments on commit 92434f2

Please sign in to comment.