Skip to content

Commit

Permalink
Make pyproject.toml compatible with PEP 621
Browse files Browse the repository at this point in the history
Made possible by the release of Poetry 2.0.

Dealing with development dependencies appear to still be tooling dependant.
  • Loading branch information
andreaso committed Jan 5, 2025
1 parent 36691f2 commit 1fd7031
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 13 deletions.
34 changes: 31 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 14 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
[tool.poetry]
[project]
name = "hv4gha"
version = "0.3.0"
description = "Use HashiCorp Vault to manage a GitHub App's private RSA key."
authors = ["Andreas Olsson <[email protected]>"]
repository = "https://github.com/andreaso/hv4gha"
license = "MIT"
authors = [{name = "Andreas Olsson", email = "[email protected]"}]
dependencies = [
"certifi (>=2024.7.4)",
"cryptography (>=43.0.1)",
"requests (>=2.31.0,<3)",
"pydantic (>=2.8.0,<3)",
]
requires-python = ">=3.10, <3.14"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
]

[tool.poetry.dependencies]
python = ">=3.10, <3.14"
certifi = ">=2024.7.4"
cryptography = ">=43.0.1"
requests = "^2.31.0"
pydantic = "^2.8.0"
[project.urls]
repository = "https://github.com/andreaso/hv4gha"

[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
Expand Down

0 comments on commit 1fd7031

Please sign in to comment.