mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-03 18:51:48 +00:00
ff8c63ea04
Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: Rhys Arkins <rhys@arkins.net>
24 lines
463 B
TOML
24 lines
463 B
TOML
[tool.poetry]
|
|
name = "example 1"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["John Doe <john.doe@gmail.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
dep1_ = "0.0.0"
|
|
dep1 = "0.0.0"
|
|
dep2 = "^0.6.0"
|
|
dep3 = "^0.33.6"
|
|
python = "~2.7 || ^3.4"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
dev_dep1 = "^3.0"
|
|
dev_dep2 = "Invalid version."
|
|
|
|
[build-system]
|
|
requires = ["poetry>=1.0", "wheel"]
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
[tool.coverage]
|
|
run.omit = ["*/tests_*.py"]
|
|
report.precision = 2
|