Skip to content

Commit

Permalink
chore: use project section (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
branchvincent authored Feb 9, 2025
1 parent 567013e commit 4ce1298
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

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

31 changes: 17 additions & 14 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 All @@ -37,9 +43,6 @@ optional = true
[tool.poetry.group.github-actions.dependencies]
pytest-github-actions-annotate-failures = "^0.1.7"

[tool.poetry.plugins."poetry.application.plugin"]
export = "poetry_plugin_export.plugins:ExportApplicationPlugin"


[tool.ruff]
fix = true
Expand Down Expand Up @@ -114,5 +117,5 @@ testpaths = [


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

0 comments on commit 4ce1298

Please sign in to comment.