|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "poetry-core" |
3 | | -version = "2.0.0" |
| 3 | +version = "2.0.0.dev0" |
4 | 4 | description = "Poetry PEP 517 Build Backend" |
5 | | -authors = ["Sébastien Eustace <sebastien@eustace.io>"] |
6 | | -license = "MIT" |
| 5 | +authors = [ |
| 6 | + { name = "Sébastien Eustace", email = "sebastien@eustace.io" } |
| 7 | +] |
| 8 | +maintainers = [ |
| 9 | + { name = "Arun Babu Neelicattu", email = "arun.neelicattu@gmail.com" }, |
| 10 | + { name = "Bjorn Neergaard", email = "bjorn@neersighted.com" }, |
| 11 | + { name = "Branch Vincent", email = "branchevincent@gmail.com" }, |
| 12 | + { name = "Randy Döring", email = "radoering.poetry@gmail.com" }, |
| 13 | + { name = "Steph Samson", email = "hello@stephsamson.com" }, |
| 14 | + { name = "finswimmer", email = "finswimmer77@gmail.com" }, |
| 15 | + { name = "Bartosz Sokorski", email = "b.sokorski@gmail.com" }, |
| 16 | +] |
| 17 | +license = { text = "MIT" } |
| 18 | +requires-python = ">=3.9, <4.0" |
7 | 19 | readme = "README.md" |
| 20 | +keywords = ["packaging", "dependency", "poetry"] |
| 21 | +dynamic = ["classifiers"] |
| 22 | + |
| 23 | +[project.urls] |
8 | 24 | homepage = "https://github.com/python-poetry/poetry-core" |
9 | 25 | repository = "https://github.com/python-poetry/poetry-core" |
10 | | -keywords = ["packaging", "dependency", "poetry"] |
11 | | -classifiers = [ |
12 | | - "Topic :: Software Development :: Build Tools", |
13 | | - "Topic :: Software Development :: Libraries :: Python Modules", |
14 | | -] |
| 26 | +"Bug Tracker" = "https://github.com/python-poetry/poetry/issues" |
| 27 | + |
| 28 | + |
| 29 | +[tool.poetry] |
| 30 | +requires-poetry = ">=2.0" |
15 | 31 | packages = [ |
16 | 32 | { include = "poetry", from = "src" }, |
17 | 33 | ] |
18 | | -include = [ |
19 | | - { path = "tests", format = "sdist" }, |
| 34 | +include = [{ path = "tests", format = "sdist" }] |
| 35 | +classifiers = [ |
| 36 | + "Topic :: Software Development :: Build Tools", |
| 37 | + "Topic :: Software Development :: Libraries :: Python Modules", |
20 | 38 | ] |
21 | 39 |
|
22 | | -[tool.poetry.urls] |
23 | | -"Bug Tracker" = "https://github.com/python-poetry/poetry/issues" |
24 | | - |
25 | | -[tool.poetry.dependencies] |
26 | | -python = "^3.9" |
27 | 40 |
|
28 | 41 | [tool.poetry.group.dev.dependencies] |
29 | 42 | pre-commit = ">=2.15.0" |
|
0 commit comments