1- [tool . poetry ]
1+ [project ]
22name = " poetry-plugin-export"
33version = " 1.9.0"
44description = " Poetry plugin to export the dependencies to various formats"
5- authors = [
" Sébastien Eustace < [email protected] > " ]
6- license = " MIT"
5+ authors = [
{ name = " Sébastien Eustace" , email = " [email protected] " } ]
6+ license = { text = " MIT" }
77readme = " README.md"
8+ requires-python = " >=3.9,<4.0"
9+ dependencies = [
10+ " poetry>=2.0.0,<3.0.0" ,
11+ # "poetry-core>=1.7.0,<3.0.0",
12+ " poetry-core @ git+https://github.com/python-poetry/poetry-core.git" ,
13+ ]
14+ dynamic = [" classifiers" ]
15+
16+ [project .urls ]
817homepage = " https://python-poetry.org/"
918repository = " https://github.com/python-poetry/poetry-plugin-export"
1019
20+ [project .entry-points ."poetry .application .plugin" ]
21+ export = " poetry_plugin_export.plugins:ExportApplicationPlugin"
22+
23+ [tool .poetry ]
1124packages = [
1225 { include = " poetry_plugin_export" , from = " src" }
1326]
14-
1527include = [
1628 { path = " tests" , format = " sdist" }
1729]
1830
19- [tool .poetry .dependencies ]
20- python = " ^3.9"
21- poetry = " >=2.0.0,<3.0.0"
22- # poetry-core = ">=1.7.0,<3.0.0"
23- poetry-core = { git = " git+https://github.com/python-poetry/poetry-core.git" }
24-
2531[tool .poetry .group .dev .dependencies ]
2632pre-commit = " >=2.18"
2733pytest = " ^8.0"
@@ -37,9 +43,6 @@ optional = true
3743[tool .poetry .group .github-actions .dependencies ]
3844pytest-github-actions-annotate-failures = " ^0.1.7"
3945
40- [tool .poetry .plugins ."poetry .application .plugin" ]
41- export = " poetry_plugin_export.plugins:ExportApplicationPlugin"
42-
4346
4447[tool .ruff ]
4548fix = true
@@ -114,5 +117,5 @@ testpaths = [
114117
115118
116119[build-system ]
117- requires = [" poetry-core" ]
120+ requires = [" poetry-core>=2.0 " ]
118121build-backend = " poetry.core.masonry.api"
0 commit comments