Skip to content

Commit

Permalink
chore: use project section
Browse files Browse the repository at this point in the history
  • Loading branch information
branchvincent committed Feb 8, 2025
1 parent 16637f1 commit 864849a
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,27 +1,33 @@
[tool.poetry]
[project]
name = "poetry-plugin-export"
version = "1.9.0"
description = "Poetry plugin to export the dependencies to various formats"
authors = ["Sébastien Eustace <[email protected]>"]
license = "MIT"
authors = [{ name = "Sébastien Eustace", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.9,<4.0"
dependencies = [
"poetry>=2.0.0,<3.0.0",
# "poetry-core>=1.7.0,<3.0.0",
"poetry-core @ git+https://github.com/python-poetry/poetry-core.git",
]
dynamic = ["classifiers"]

[project.urls]
homepage = "https://python-poetry.org/"
repository = "https://github.com/python-poetry/poetry-plugin-export"

[project.entry-points."poetry.application.plugin"]
export = "poetry_plugin_export.plugins:ExportApplicationPlugin"

[tool.poetry]
packages = [
{ include = "poetry_plugin_export", from = "src" }
]

include = [
{ path = "tests", format = "sdist" }
]

[tool.poetry.dependencies]
python = "^3.9"
poetry = ">=2.0.0,<3.0.0"
# poetry-core = ">=1.7.0,<3.0.0"
poetry-core = { git = "git+https://github.com/python-poetry/poetry-core.git" }

[tool.poetry.group.dev.dependencies]
pre-commit = ">=2.18"
pytest = "^8.0"
Expand Down Expand Up @@ -114,5 +120,5 @@ testpaths = [


[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 864849a

Please sign in to comment.