|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "poetry-plugin-export" |
3 | 3 | version = "1.9.0" |
4 | 4 | description = "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" } |
7 | 7 | readme = "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] |
8 | 17 | homepage = "https://python-poetry.org/" |
9 | 18 | repository = "https://github.com/python-poetry/poetry-plugin-export" |
10 | 19 |
|
| 20 | +[project.entry-points."poetry.application.plugin"] |
| 21 | +export = "poetry_plugin_export.plugins:ExportApplicationPlugin" |
| 22 | + |
| 23 | +[tool.poetry] |
11 | 24 | packages = [ |
12 | 25 | { include = "poetry_plugin_export", from = "src" } |
13 | 26 | ] |
14 | | - |
15 | 27 | include = [ |
16 | 28 | { path = "tests", format = "sdist" } |
17 | 29 | ] |
18 | 30 |
|
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 | | - |
25 | 31 | [tool.poetry.group.dev.dependencies] |
26 | 32 | pre-commit = ">=2.18" |
27 | 33 | pytest = "^8.0" |
@@ -114,5 +120,5 @@ testpaths = [ |
114 | 120 |
|
115 | 121 |
|
116 | 122 | [build-system] |
117 | | -requires = ["poetry-core"] |
| 123 | +requires = ["poetry-core>=2.0"] |
118 | 124 | build-backend = "poetry.core.masonry.api" |
0 commit comments