pyproject.toml (poetry-1.1.15) | : | pyproject.toml (poetry-1.2.0) | ||
---|---|---|---|---|
[tool.poetry] | [tool.poetry] | |||
name = "simple-project" | name = "simple-project" | |||
version = "1.2.3" | version = "1.2.3" | |||
description = "Some description." | description = "Some description." | |||
authors = [ | authors = [ | |||
"Sébastien Eustace <sebastien@eustace.io>" | "Sébastien Eustace <sebastien@eustace.io>" | |||
] | ] | |||
license = "MIT" | license = "MIT" | |||
readme = "README.rst" | readme = ["README.rst"] | |||
homepage = "https://python-poetry.org" | homepage = "https://python-poetry.org" | |||
repository = "https://github.com/python-poetry/poetry" | repository = "https://github.com/python-poetry/poetry" | |||
documentation = "https://python-poetry.org/docs" | documentation = "https://python-poetry.org/docs" | |||
keywords = ["packaging", "dependency", "poetry"] | keywords = ["packaging", "dependency", "poetry"] | |||
classifiers = [ | classifiers = [ | |||
"Topic :: Software Development :: Build Tools", | "Topic :: Software Development :: Build Tools", | |||
"Topic :: Software Development :: Libraries :: Python Modules" | "Topic :: Software Development :: Libraries :: Python Modules" | |||
] | ] | |||
# Requirements | # Requirements | |||
[tool.poetry.dependencies] | [tool.poetry.dependencies] | |||
python = "~2.7 || ^3.4" | python = "~2.7 || ^3.4" | |||
[tool.poetry.scripts] | [tool.poetry.scripts] | |||
foo = "foo:bar" | foo = "foo:bar" | |||
baz = "bar:baz.boom.bim" | baz = "bar:baz.boom.bim" | |||
fox = "fuz.foo:bar.baz" | fox = "fuz.foo:bar.baz" | |||
[build-system] | ||||
requires = ["poetry-core>=1.1.0a7"] | ||||
build-backend = "poetry.core.masonry.api" | ||||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |